pub struct MetadataFieldDef {
pub key: String,
pub description: String,
pub field_type: FieldType,
pub default_value: Option<String>,
pub enum_values: Option<Vec<String>>,
pub optional: bool,
pub init_timestamp: bool,
pub auto_timestamp: bool,
pub serialization: Serialization,
pub filterable: Filterable,
}Expand description
A metadata (frontmatter) field.
Fields§
§key: String§description: String§field_type: FieldType§default_value: Option<String>§enum_values: Option<Vec<String>>§optional: bool§init_timestamp: bool§auto_timestamp: bool§serialization: Serialization§filterable: FilterableTrait Implementations§
Source§impl Clone for MetadataFieldDef
impl Clone for MetadataFieldDef
Source§fn clone(&self) -> MetadataFieldDef
fn clone(&self) -> MetadataFieldDef
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 MetadataFieldDef
impl Debug for MetadataFieldDef
Source§impl<'de> Deserialize<'de> for MetadataFieldDef
impl<'de> Deserialize<'de> for MetadataFieldDef
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 JsonSchema for MetadataFieldDef
impl JsonSchema for MetadataFieldDef
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for MetadataFieldDef
impl RefUnwindSafe for MetadataFieldDef
impl Send for MetadataFieldDef
impl Sync for MetadataFieldDef
impl Unpin for MetadataFieldDef
impl UnsafeUnpin for MetadataFieldDef
impl UnwindSafe for MetadataFieldDef
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