pub struct SchemaSignaturesFile {
pub schemas: Vec<SchemaSignatureConfig>,
pub routing: Option<RoutingConfig>,
}Expand description
Top-level YAML document holding a schemas: list and an optional
routing: section.
Fields§
§schemas: Vec<SchemaSignatureConfig>§routing: Option<RoutingConfig>Trait Implementations§
Source§impl Clone for SchemaSignaturesFile
impl Clone for SchemaSignaturesFile
Source§fn clone(&self) -> SchemaSignaturesFile
fn clone(&self) -> SchemaSignaturesFile
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 SchemaSignaturesFile
impl Debug for SchemaSignaturesFile
Source§impl Default for SchemaSignaturesFile
impl Default for SchemaSignaturesFile
Source§fn default() -> SchemaSignaturesFile
fn default() -> SchemaSignaturesFile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SchemaSignaturesFile
impl<'de> Deserialize<'de> for SchemaSignaturesFile
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
Auto Trait Implementations§
impl Freeze for SchemaSignaturesFile
impl RefUnwindSafe for SchemaSignaturesFile
impl Send for SchemaSignaturesFile
impl Sync for SchemaSignaturesFile
impl Unpin for SchemaSignaturesFile
impl UnsafeUnpin for SchemaSignaturesFile
impl UnwindSafe for SchemaSignaturesFile
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