pub struct DocumentSummary {
pub address: DocumentAddress,
}Expand description
One catalog row identified entirely by logical names.
Fields§
§address: DocumentAddressStable logical document identity.
Implementations§
Source§impl DocumentSummary
impl DocumentSummary
Sourcepub fn catalog_path(&self) -> String
pub fn catalog_path(&self) -> String
Derive the stable logical path used by tree and discovery frontends.
Trait Implementations§
Source§impl Clone for DocumentSummary
impl Clone for DocumentSummary
Source§fn clone(&self) -> DocumentSummary
fn clone(&self) -> DocumentSummary
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 DocumentSummary
impl Debug for DocumentSummary
Source§impl<'de> Deserialize<'de> for DocumentSummary
impl<'de> Deserialize<'de> for DocumentSummary
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 DocumentSummary
Source§impl JsonSchema for DocumentSummary
impl JsonSchema for DocumentSummary
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 PartialEq for DocumentSummary
impl PartialEq for DocumentSummary
Source§impl Serialize for DocumentSummary
impl Serialize for DocumentSummary
impl StructuralPartialEq for DocumentSummary
Auto Trait Implementations§
impl Freeze for DocumentSummary
impl RefUnwindSafe for DocumentSummary
impl Send for DocumentSummary
impl Sync for DocumentSummary
impl Unpin for DocumentSummary
impl UnsafeUnpin for DocumentSummary
impl UnwindSafe for DocumentSummary
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