#[repr(C)]pub struct ProjectIterToken {
    pub value: u64,
}Expand description
A token used for paging through tracked projects. One may be returned by the ProjectId.List
call so it can be passed into the succeeding call to continue the listing from where it left
off.
Fields§
§value: u64Trait Implementations§
Source§impl Clone for ProjectIterToken
 
impl Clone for ProjectIterToken
Source§fn clone(&self) -> ProjectIterToken
 
fn clone(&self) -> ProjectIterToken
Returns a duplicate 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 ProjectIterToken
 
impl Debug for ProjectIterToken
Source§impl<D> Decode<ProjectIterToken, D> for ProjectIterTokenwhere
    D: ResourceDialect,
 
impl<D> Decode<ProjectIterToken, D> for ProjectIterTokenwhere
    D: ResourceDialect,
Source§fn new_empty() -> ProjectIterToken
 
fn new_empty() -> ProjectIterToken
Creates a valid instance of 
Self. The specific value does not matter,
since it will be overwritten by decode.Source§impl<D> Encode<ProjectIterToken, D> for &ProjectIterTokenwhere
    D: ResourceDialect,
 
impl<D> Encode<ProjectIterToken, D> for &ProjectIterTokenwhere
    D: ResourceDialect,
Source§impl Hash for ProjectIterToken
 
impl Hash for ProjectIterToken
Source§impl Ord for ProjectIterToken
 
impl Ord for ProjectIterToken
Source§fn cmp(&self, other: &ProjectIterToken) -> Ordering
 
fn cmp(&self, other: &ProjectIterToken) -> 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 ProjectIterToken
 
impl PartialEq for ProjectIterToken
Source§impl PartialOrd for ProjectIterToken
 
impl PartialOrd for ProjectIterToken
Source§impl TypeMarker for ProjectIterToken
 
impl TypeMarker for ProjectIterToken
Source§type Owned = ProjectIterToken
 
type Owned = ProjectIterToken
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 ProjectIterToken
 
impl ValueTypeMarker for ProjectIterToken
Source§type Borrowed<'a> = &'a ProjectIterToken
 
type Borrowed<'a> = &'a ProjectIterToken
The Rust type to use for encoding. This is a particular 
Encode<Self>
type cheaply obtainable from &Self::Owned. There are three cases: Read moreSource§fn borrow(
    value: &<ProjectIterToken as TypeMarker>::Owned,
) -> <ProjectIterToken as ValueTypeMarker>::Borrowed<'_>
 
fn borrow( value: &<ProjectIterToken as TypeMarker>::Owned, ) -> <ProjectIterToken as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from 
&Self::Owned to Self::Borrowed.impl Copy for ProjectIterToken
impl Eq for ProjectIterToken
impl Persistable for ProjectIterToken
impl StructuralPartialEq for ProjectIterToken
Auto Trait Implementations§
impl Freeze for ProjectIterToken
impl RefUnwindSafe for ProjectIterToken
impl Send for ProjectIterToken
impl Sync for ProjectIterToken
impl Unpin for ProjectIterToken
impl UnwindSafe for ProjectIterToken
Blanket Implementations§
Source§impl<T> Body for Twhere
    T: Persistable,
 
impl<T> Body for Twhere
    T: Persistable,
Source§type MarkerAtTopLevel = T
 
type MarkerAtTopLevel = T
The marker type to use when the body is at the top-level.
Source§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