pub struct RoomSchema {
pub fields: Vec<FieldDef>,
}Expand description
Room data schema for topic generation.
Fields§
§fields: Vec<FieldDef>Trait Implementations§
Source§impl Clone for RoomSchema
impl Clone for RoomSchema
Source§fn clone(&self) -> RoomSchema
fn clone(&self) -> RoomSchema
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 RoomSchema
impl Debug for RoomSchema
Source§impl<'de> Deserialize<'de> for RoomSchema
impl<'de> Deserialize<'de> for RoomSchema
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
impl Eq for RoomSchema
Source§impl PartialEq for RoomSchema
impl PartialEq for RoomSchema
Source§fn eq(&self, other: &RoomSchema) -> bool
fn eq(&self, other: &RoomSchema) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RoomSchema
impl Serialize for RoomSchema
impl StructuralPartialEq for RoomSchema
Auto Trait Implementations§
impl Freeze for RoomSchema
impl RefUnwindSafe for RoomSchema
impl Send for RoomSchema
impl Sync for RoomSchema
impl Unpin for RoomSchema
impl UnsafeUnpin for RoomSchema
impl UnwindSafe for RoomSchema
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