pub enum SeqOrUid {
Value(NonZeroU32),
Asterisk,
}
Variants§
Value(NonZeroU32)
Asterisk
Implementations§
Source§impl SeqOrUid
impl SeqOrUid
pub fn expand(&self, largest: NonZeroU32) -> NonZeroU32
Trait Implementations§
Source§impl<'arbitrary> Arbitrary<'arbitrary> for SeqOrUid
impl<'arbitrary> Arbitrary<'arbitrary> for SeqOrUid
Source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the given unstructured data. Read moreSource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the entirety of the given
unstructured data. Read moreSource§fn size_hint(depth: usize) -> (usize, Option<usize>)
fn size_hint(depth: usize) -> (usize, Option<usize>)
Get a size hint for how many bytes out of an
Unstructured
this type
needs to construct itself. Read moreSource§fn try_size_hint(
depth: usize,
) -> Result<(usize, Option<usize>), MaxRecursionReached>
fn try_size_hint( depth: usize, ) -> Result<(usize, Option<usize>), MaxRecursionReached>
Get a size hint for how many bytes out of an
Unstructured
this type
needs to construct itself. Read moreSource§impl<'de> Deserialize<'de> for SeqOrUid
impl<'de> Deserialize<'de> for SeqOrUid
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<NonZero<u32>> for SeqOrUid
impl From<NonZero<u32>> for SeqOrUid
Source§fn from(value: NonZeroU32) -> Self
fn from(value: NonZeroU32) -> Self
Converts to this type from the input type.
Source§impl From<SeqOrUid> for SequenceSet
impl From<SeqOrUid> for SequenceSet
Source§impl IntoBoundedStatic for SeqOrUid
impl IntoBoundedStatic for SeqOrUid
Source§impl ToBoundedStatic for SeqOrUid
impl ToBoundedStatic for SeqOrUid
impl Copy for SeqOrUid
impl Eq for SeqOrUid
impl StructuralPartialEq for SeqOrUid
Auto Trait Implementations§
impl Freeze for SeqOrUid
impl RefUnwindSafe for SeqOrUid
impl Send for SeqOrUid
impl Sync for SeqOrUid
impl Unpin for SeqOrUid
impl UnwindSafe for SeqOrUid
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