pub struct ContentDefinition {
pub idx: u8,
pub name: String,
pub fields: Vec<Field>,
}Fields§
§idx: u8Unique index for the content definition.
name: StringName of the content definition.
fields: Vec<Field>Fields for the content definition.
Note: only fields with the String and Uuid kinds can
be indexed (for now).
Trait Implementations§
Source§impl Clone for ContentDefinition
impl Clone for ContentDefinition
Source§fn clone(&self) -> ContentDefinition
fn clone(&self) -> ContentDefinition
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 ContentDefinition
impl Debug for ContentDefinition
Source§impl<'de> Deserialize<'de> for ContentDefinition
impl<'de> Deserialize<'de> for ContentDefinition
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 ContentDefinition
impl RefUnwindSafe for ContentDefinition
impl Send for ContentDefinition
impl Sync for ContentDefinition
impl Unpin for ContentDefinition
impl UnwindSafe for ContentDefinition
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