Enum fidl_fuchsia_io::SeekOrigin
source · #[repr(u32)]pub enum SeekOrigin {
Start = 0,
Current = 1,
End = 2,
}
Expand description
The reference point for updating the seek offset. See [File.Seek
].
This enum matches the zx_stream_seek_origin_t
enum.
Variants§
Start = 0
Seek from the start of the file.
The seek offset will be set to offset
bytes.
The seek offset cannot be negative in this case.
Current = 1
Seek from the current position in the file.
The seek offset will be the current seek offset plus offset
bytes.
End = 2
Seek from the end of the file.
The seek offset will be the file size plus offset
bytes.
Implementations§
source§impl SeekOrigin
impl SeekOrigin
pub fn from_primitive(prim: u32) -> Option<Self>
pub const fn into_primitive(self) -> u32
pub fn is_unknown(&self) -> bool
👎Deprecated: Strict enums should not use
is_unknown
Trait Implementations§
source§impl Clone for SeekOrigin
impl Clone for SeekOrigin
source§fn clone(&self) -> SeekOrigin
fn clone(&self) -> SeekOrigin
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 moresource§impl Debug for SeekOrigin
impl Debug for SeekOrigin
source§impl<D: ResourceDialect> Decode<SeekOrigin, D> for SeekOrigin
impl<D: ResourceDialect> Decode<SeekOrigin, D> for SeekOrigin
source§impl<D: ResourceDialect> Encode<SeekOrigin, D> for SeekOrigin
impl<D: ResourceDialect> Encode<SeekOrigin, D> for SeekOrigin
source§impl Hash for SeekOrigin
impl Hash for SeekOrigin
source§impl Ord for SeekOrigin
impl Ord for SeekOrigin
source§fn cmp(&self, other: &SeekOrigin) -> Ordering
fn cmp(&self, other: &SeekOrigin) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for SeekOrigin
impl PartialEq for SeekOrigin
source§fn eq(&self, other: &SeekOrigin) -> bool
fn eq(&self, other: &SeekOrigin) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for SeekOrigin
impl PartialOrd for SeekOrigin
source§fn partial_cmp(&self, other: &SeekOrigin) -> Option<Ordering>
fn partial_cmp(&self, other: &SeekOrigin) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl TypeMarker for SeekOrigin
impl TypeMarker for SeekOrigin
§type Owned = SeekOrigin
type Owned = SeekOrigin
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.source§impl ValueTypeMarker for SeekOrigin
impl ValueTypeMarker for SeekOrigin
§type Borrowed<'a> = SeekOrigin
type Borrowed<'a> = SeekOrigin
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read moreimpl Copy for SeekOrigin
impl Eq for SeekOrigin
impl StructuralPartialEq for SeekOrigin
Auto Trait Implementations§
impl Freeze for SeekOrigin
impl RefUnwindSafe for SeekOrigin
impl Send for SeekOrigin
impl Sync for SeekOrigin
impl Unpin for SeekOrigin
impl UnwindSafe for SeekOrigin
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)