Enum concordium_std::schema::SizeLength
source · [−]pub enum SizeLength {
U8,
U16,
U32,
U64,
}
Expand description
Type of the variable used to encode the length of Sets, List, Maps
Variants
U8
U16
U32
U64
Trait Implementations
sourceimpl Clone for SizeLength
impl Clone for SizeLength
sourcefn clone(&self) -> SizeLength
fn clone(&self) -> SizeLength
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SizeLength
impl Debug for SizeLength
sourceimpl Deserial for SizeLength
impl Deserial for SizeLength
sourcefn deserial<R>(source: &mut R) -> Result<SizeLength, ParseError> where
R: Read,
fn deserial<R>(source: &mut R) -> Result<SizeLength, ParseError> where
R: Read,
Attempt to read a structure from a given source, failing if an error occurs during deserialization or reading. Read more
sourceimpl PartialEq<SizeLength> for SizeLength
impl PartialEq<SizeLength> for SizeLength
sourceimpl Serial for SizeLength
impl Serial for SizeLength
impl Copy for SizeLength
impl Eq for SizeLength
impl StructuralEq for SizeLength
impl StructuralPartialEq for SizeLength
Auto Trait Implementations
impl RefUnwindSafe for SizeLength
impl Send for SizeLength
impl Sync for SizeLength
impl Unpin for SizeLength
impl UnwindSafe for SizeLength
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more