pub enum MarkdownOrigin {
Documents,
Source {
name: String,
},
}Expand description
Storage identity of one registered Markdown document.
Variants§
Trait Implementations§
Source§impl Clone for MarkdownOrigin
impl Clone for MarkdownOrigin
Source§fn clone(&self) -> MarkdownOrigin
fn clone(&self) -> MarkdownOrigin
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 MarkdownOrigin
impl Debug for MarkdownOrigin
Source§impl<'de> Deserialize<'de> for MarkdownOrigin
impl<'de> Deserialize<'de> for MarkdownOrigin
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<MarkdownOrigin, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MarkdownOrigin, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for MarkdownOrigin
Source§impl JsonSchema for MarkdownOrigin
impl JsonSchema for MarkdownOrigin
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 moreSource§impl Ord for MarkdownOrigin
impl Ord for MarkdownOrigin
Source§fn cmp(&self, other: &MarkdownOrigin) -> Ordering
fn cmp(&self, other: &MarkdownOrigin) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for MarkdownOrigin
impl PartialEq for MarkdownOrigin
Source§impl PartialOrd for MarkdownOrigin
impl PartialOrd for MarkdownOrigin
Source§impl Serialize for MarkdownOrigin
impl Serialize for MarkdownOrigin
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for MarkdownOrigin
Auto Trait Implementations§
impl Freeze for MarkdownOrigin
impl RefUnwindSafe for MarkdownOrigin
impl Send for MarkdownOrigin
impl Sync for MarkdownOrigin
impl Unpin for MarkdownOrigin
impl UnsafeUnpin for MarkdownOrigin
impl UnwindSafe for MarkdownOrigin
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