pub struct RtcpNotificationBuilder<State>(/* private fields */);
Expand description
Builder for serializing an instance of the RtcpNotification type.
Can be created using the RtcpNotification::builder method.
Implementations§
Source§impl RtcpNotificationBuilder<()>
impl RtcpNotificationBuilder<()>
Sourcepub fn data<T0>(self, value: T0) -> RtcpNotificationBuilder<(T0,)>
pub fn data<T0>(self, value: T0) -> RtcpNotificationBuilder<(T0,)>
Setter for the data
field.
Source§impl<T0> RtcpNotificationBuilder<(T0,)>
impl<T0> RtcpNotificationBuilder<(T0,)>
Sourcepub fn finish(self, builder: &mut Builder) -> Offset<RtcpNotification>where
Self: WriteAsOffset<RtcpNotification>,
pub fn finish(self, builder: &mut Builder) -> Offset<RtcpNotification>where
Self: WriteAsOffset<RtcpNotification>,
Finish writing the builder to get an Offset to a serialized RtcpNotification.
Trait Implementations§
Source§impl<State: Debug> Debug for RtcpNotificationBuilder<State>
impl<State: Debug> Debug for RtcpNotificationBuilder<State>
impl<T0: WriteAs<Offset<[u8]>>> WriteAs<Offset<RtcpNotification>> for RtcpNotificationBuilder<(T0,)>
impl<T0: WriteAs<Offset<[u8]>>> WriteAsOffset<RtcpNotification> for RtcpNotificationBuilder<(T0,)>
impl<T0: WriteAs<Offset<[u8]>>> WriteAsOptional<Offset<RtcpNotification>> for RtcpNotificationBuilder<(T0,)>
Auto Trait Implementations§
impl<State> Freeze for RtcpNotificationBuilder<State>where
State: Freeze,
impl<State> RefUnwindSafe for RtcpNotificationBuilder<State>where
State: RefUnwindSafe,
impl<State> Send for RtcpNotificationBuilder<State>where
State: Send,
impl<State> Sync for RtcpNotificationBuilder<State>where
State: Sync,
impl<State> Unpin for RtcpNotificationBuilder<State>where
State: Unpin,
impl<State> UnwindSafe for RtcpNotificationBuilder<State>where
State: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more