pub enum Sequence {
Single(SeqOrUid),
Range(SeqOrUid, SeqOrUid),
}Variants§
Trait Implementations§
Source§impl<'arbitrary> Arbitrary<'arbitrary> for Sequence
Available on crate feature arbitrary only.
impl<'arbitrary> Arbitrary<'arbitrary> for Sequence
Available on crate feature
arbitrary only.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 Sequence
Available on crate feature serde only.
impl<'de> Deserialize<'de> for Sequence
Available on crate feature
serde only.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
impl Eq for Sequence
Source§impl From<NonZero<u32>> for Sequence
impl From<NonZero<u32>> for Sequence
Source§fn from(value: NonZeroU32) -> Self
fn from(value: NonZeroU32) -> Self
Converts to this type from the input type.
Source§impl From<RangeFrom<NonZero<u32>>> for Sequence
impl From<RangeFrom<NonZero<u32>>> for Sequence
Source§fn from(range: RangeFrom<NonZeroU32>) -> Self
fn from(range: RangeFrom<NonZeroU32>) -> Self
Converts to this type from the input type.
Source§impl From<RangeInclusive<NonZero<u32>>> for Sequence
impl From<RangeInclusive<NonZero<u32>>> for Sequence
Source§fn from(range: RangeInclusive<NonZeroU32>) -> Self
fn from(range: RangeInclusive<NonZeroU32>) -> Self
Converts to this type from the input type.
Source§impl From<RangeToInclusive<NonZero<u32>>> for Sequence
impl From<RangeToInclusive<NonZero<u32>>> for Sequence
Source§fn from(range: RangeToInclusive<NonZeroU32>) -> Self
fn from(range: RangeToInclusive<NonZeroU32>) -> Self
Converts to this type from the input type.
Source§impl From<Sequence> for SequenceSet
impl From<Sequence> for SequenceSet
Source§impl IntoBoundedStatic for Sequence
Available on crate feature bounded-static only.
impl IntoBoundedStatic for Sequence
Available on crate feature
bounded-static only.impl StructuralPartialEq for Sequence
Source§impl ToBoundedStatic for Sequence
Available on crate feature bounded-static only.
impl ToBoundedStatic for Sequence
Available on crate feature
bounded-static only.Auto Trait Implementations§
impl Freeze for Sequence
impl RefUnwindSafe for Sequence
impl Send for Sequence
impl Sync for Sequence
impl Unpin for Sequence
impl UnsafeUnpin for Sequence
impl UnwindSafe for Sequence
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