pub struct WireSchema {
pub fields: Vec<FieldSpec>,
}Expand description
Ordered list of fields that make up a feed’s schema.
Fields§
§fields: Vec<FieldSpec>Implementations§
Trait Implementations§
Source§impl Clone for WireSchema
impl Clone for WireSchema
Source§fn clone(&self) -> WireSchema
fn clone(&self) -> WireSchema
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 moreSource§impl Debug for WireSchema
impl Debug for WireSchema
Source§impl<'de> Deserialize<'de> for WireSchema
impl<'de> Deserialize<'de> for WireSchema
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 PartialEq for WireSchema
impl PartialEq for WireSchema
Source§fn eq(&self, other: &WireSchema) -> bool
fn eq(&self, other: &WireSchema) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WireSchema
impl Serialize for WireSchema
impl StructuralPartialEq for WireSchema
Auto Trait Implementations§
impl Freeze for WireSchema
impl RefUnwindSafe for WireSchema
impl Send for WireSchema
impl Sync for WireSchema
impl Unpin for WireSchema
impl UnsafeUnpin for WireSchema
impl UnwindSafe for WireSchema
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