pub struct SchemasEvent {
pub add: Option<HashSet<SchemaAdd>>,
pub remove: Option<HashSet<SchemaType>>,
pub change: Option<HashSet<SchemaChange>>,
}Fields§
§add: Option<HashSet<SchemaAdd>>§remove: Option<HashSet<SchemaType>>§change: Option<HashSet<SchemaChange>>Trait Implementations§
Source§impl Clone for SchemasEvent
impl Clone for SchemasEvent
Source§fn clone(&self) -> SchemasEvent
fn clone(&self) -> SchemasEvent
Returns a duplicate of the value. Read more
1.0.0 · 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 SchemasEvent
impl Debug for SchemasEvent
Source§impl<'de> Deserialize<'de> for SchemasEvent
impl<'de> Deserialize<'de> for SchemasEvent
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 SchemasEvent
impl RefUnwindSafe for SchemasEvent
impl Send for SchemasEvent
impl Sync for SchemasEvent
impl Unpin for SchemasEvent
impl UnsafeUnpin for SchemasEvent
impl UnwindSafe for SchemasEvent
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