Enum concordium_std::schema::Fields [−][src]
Schema for the fields of a struct or some enum variant.
Variants
Named fields, e.g., struct Foo {x: u64, y: u32}.
Unnamed fields, e.g., struct Foo(u64, u32)
No fields. Note that this is distinct from an empty set of named or
unnamed fields. That is, in Rust there is a (albeit trivial) difference
between struct Foo {}, struct Foo, and struct Foo(), all of which
are valid, but will have different representations.
Trait Implementations
impl Clone for Fields[src]
impl Debug for Fields[src]
impl Deserial for Fields[src]
impl Eq for Fields[src]
impl PartialEq<Fields> for Fields[src]
impl Serial for Fields[src]
impl StructuralEq for Fields[src]
impl StructuralPartialEq for Fields[src]
Auto Trait Implementations
impl RefUnwindSafe for Fields
impl Send for Fields
impl Sync for Fields
impl Unpin for Fields
impl UnwindSafe for Fields
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<A> Serialize for A where
A: Serial + Deserial, [src]
A: Serial + Deserial,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,