#[repr(transparent)]pub struct RepoAvailability(pub u8);Tuple Fields§
§0: u8Implementations§
Trait Implementations§
Source§impl Clone for RepoAvailability
impl Clone for RepoAvailability
Source§fn clone(&self) -> RepoAvailability
fn clone(&self) -> RepoAvailability
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RepoAvailability
Source§impl Debug for RepoAvailability
impl Debug for RepoAvailability
Source§impl Default for RepoAvailability
impl Default for RepoAvailability
Source§fn default() -> RepoAvailability
fn default() -> RepoAvailability
Returns the “default value” for a type. Read more
Source§impl EndianScalar for RepoAvailability
impl EndianScalar for RepoAvailability
impl Eq for RepoAvailability
Source§impl<'a> Follow<'a> for RepoAvailability
impl<'a> Follow<'a> for RepoAvailability
Source§impl From<RepoAvailability> for RepoAvailability
impl From<RepoAvailability> for RepoAvailability
Source§fn from(value: RepoAvailability) -> Self
fn from(value: RepoAvailability) -> Self
Converts to this type from the input type.
Source§impl From<RepoAvailability> for RepoAvailability
impl From<RepoAvailability> for RepoAvailability
Source§fn from(value: RepoAvailability) -> Self
fn from(value: RepoAvailability) -> Self
Converts to this type from the input type.
Source§impl Hash for RepoAvailability
impl Hash for RepoAvailability
Source§impl Ord for RepoAvailability
impl Ord for RepoAvailability
Source§fn cmp(&self, other: &RepoAvailability) -> Ordering
fn cmp(&self, other: &RepoAvailability) -> Ordering
1.21.0 (const: unstable) · 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 RepoAvailability
impl PartialEq for RepoAvailability
Source§impl PartialOrd for RepoAvailability
impl PartialOrd for RepoAvailability
Source§impl Push for RepoAvailability
impl Push for RepoAvailability
impl SimpleToVerifyInSlice for RepoAvailability
impl StructuralPartialEq for RepoAvailability
Source§impl<'a> Verifiable for RepoAvailability
impl<'a> Verifiable for RepoAvailability
Source§fn run_verifier(
v: &mut Verifier<'_, '_>,
pos: usize,
) -> Result<(), InvalidFlatbuffer>
fn run_verifier( v: &mut Verifier<'_, '_>, pos: usize, ) -> Result<(), InvalidFlatbuffer>
Runs the verifier for this type, assuming its at position
pos in the verifier’s buffer.
Should not need to be called directly.Auto Trait Implementations§
impl Freeze for RepoAvailability
impl RefUnwindSafe for RepoAvailability
impl Send for RepoAvailability
impl Sync for RepoAvailability
impl Unpin for RepoAvailability
impl UnsafeUnpin for RepoAvailability
impl UnwindSafe for RepoAvailability
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§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more