pub struct PacketStreamOptions {
pub format: Option<PacketStreamFormat>,
/* private fields */
}Expand description
Parameters specified by a caller when creating a packet stream.
Fields§
§format: Option<PacketStreamFormat>The format (sample format, channelization, frame rate, encoding) of the packet stream to be created.
Required.
Trait Implementations§
Source§impl Debug for PacketStreamOptions
impl Debug for PacketStreamOptions
Source§impl Decode<PacketStreamOptions, FDomainResourceDialect> for PacketStreamOptions
impl Decode<PacketStreamOptions, FDomainResourceDialect> for PacketStreamOptions
Source§impl Default for PacketStreamOptions
impl Default for PacketStreamOptions
Source§fn default() -> PacketStreamOptions
fn default() -> PacketStreamOptions
Returns the “default value” for a type. Read more
Source§impl Encode<PacketStreamOptions, FDomainResourceDialect> for &mut PacketStreamOptions
impl Encode<PacketStreamOptions, FDomainResourceDialect> for &mut PacketStreamOptions
Source§impl PartialEq for PacketStreamOptions
impl PartialEq for PacketStreamOptions
Source§impl ResourceTypeMarker for PacketStreamOptions
impl ResourceTypeMarker for PacketStreamOptions
Source§type Borrowed<'a> = &'a mut PacketStreamOptions
type Borrowed<'a> = &'a mut PacketStreamOptions
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &mut Self::Owned. There are three cases: Read moreSource§fn take_or_borrow<'a>(
value: &'a mut <Self as TypeMarker>::Owned,
) -> Self::Borrowed<'a>
fn take_or_borrow<'a>( value: &'a mut <Self as TypeMarker>::Owned, ) -> Self::Borrowed<'a>
Cheaply converts from
&mut Self::Owned to Self::Borrowed. For
HandleBased types this is “take” (it returns an owned handle and
replaces value with Handle::invalid), and for all other types it is
“borrow” (just converts from one reference to another).Source§impl TypeMarker for PacketStreamOptions
impl TypeMarker for PacketStreamOptions
Source§type Owned = PacketStreamOptions
type Owned = PacketStreamOptions
The owned Rust type which this FIDL type decodes into.
Source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
Source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align.Source§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned to a single memcpy. Read moreSource§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned to a single memcpy.impl Standalone<FDomainResourceDialect> for PacketStreamOptions
impl StructuralPartialEq for PacketStreamOptions
Auto Trait Implementations§
impl Freeze for PacketStreamOptions
impl RefUnwindSafe for PacketStreamOptions
impl Send for PacketStreamOptions
impl Sync for PacketStreamOptions
impl Unpin for PacketStreamOptions
impl UnwindSafe for PacketStreamOptions
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
Source§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T to [Self]