Struct BufferRange
#[repr(C)]pub struct BufferRange {
pub buffer_id: u64,
pub offset: u64,
pub size: u64,
}
Fields§
§buffer_id: u64
§offset: u64
§size: u64
Trait Implementations§
§impl Clone for BufferRange
impl Clone for BufferRange
§fn clone(&self) -> BufferRange
fn clone(&self) -> BufferRange
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for BufferRange
impl Debug for BufferRange
§impl<D> Decode<BufferRange, D> for BufferRangewhere
D: ResourceDialect,
impl<D> Decode<BufferRange, D> for BufferRangewhere
D: ResourceDialect,
§fn new_empty() -> BufferRange
fn new_empty() -> BufferRange
Creates a valid instance of
Self
. The specific value does not matter,
since it will be overwritten by decode
.§impl<D> Encode<BufferRange, D> for &BufferRangewhere
D: ResourceDialect,
impl<D> Encode<BufferRange, D> for &BufferRangewhere
D: ResourceDialect,
§impl Hash for BufferRange
impl Hash for BufferRange
§impl Ord for BufferRange
impl Ord for BufferRange
§impl PartialEq for BufferRange
impl PartialEq for BufferRange
§impl PartialOrd for BufferRange
impl PartialOrd for BufferRange
§impl TypeMarker for BufferRange
impl TypeMarker for BufferRange
§type Owned = BufferRange
type Owned = BufferRange
The owned Rust type which this FIDL type decodes into.
§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.
§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
.§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 more§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 ValueTypeMarker for BufferRange
impl ValueTypeMarker for BufferRange
§type Borrowed<'a> = &'a BufferRange
type Borrowed<'a> = &'a BufferRange
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read more§fn borrow(
value: &<BufferRange as TypeMarker>::Owned,
) -> <BufferRange as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<BufferRange as TypeMarker>::Owned, ) -> <BufferRange as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned
to Self::Borrowed
.impl Copy for BufferRange
impl Eq for BufferRange
impl Persistable for BufferRange
impl StructuralPartialEq for BufferRange
Auto Trait Implementations§
impl Freeze for BufferRange
impl RefUnwindSafe for BufferRange
impl Send for BufferRange
impl Sync for BufferRange
impl Unpin for BufferRange
impl UnwindSafe for BufferRange
Blanket Implementations§
§impl<T> Body for Twhere
T: Persistable,
impl<T> Body for Twhere
T: Persistable,
§type MarkerAtTopLevel = T
type MarkerAtTopLevel = T
The marker type to use when the body is at the top-level.
§type MarkerInResultUnion = T
type MarkerInResultUnion = T
The marker type to use when the body is nested in a result union.
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