pub struct NamespaceInfo {
pub name: String,
pub catalog_name: String,
pub comment: Option<String>,
pub storage_root: Option<String>,
}Expand description
Namespace 情報(公開 API 返却用)。
Fields§
§name: StringNamespace 名。
catalog_name: String所属 Catalog 名。
comment: Option<String>コメント。
storage_root: Option<String>ストレージルート。
Trait Implementations§
Source§impl Clone for NamespaceInfo
impl Clone for NamespaceInfo
Source§fn clone(&self) -> NamespaceInfo
fn clone(&self) -> NamespaceInfo
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 NamespaceInfo
impl Debug for NamespaceInfo
Source§impl From<PersistedNamespaceMeta> for NamespaceInfo
impl From<PersistedNamespaceMeta> for NamespaceInfo
Source§fn from(value: NamespaceMeta) -> Self
fn from(value: NamespaceMeta) -> Self
Converts to this type from the input type.
Source§impl PartialEq for NamespaceInfo
impl PartialEq for NamespaceInfo
impl Eq for NamespaceInfo
impl StructuralPartialEq for NamespaceInfo
Auto Trait Implementations§
impl Freeze for NamespaceInfo
impl RefUnwindSafe for NamespaceInfo
impl Send for NamespaceInfo
impl Sync for NamespaceInfo
impl Unpin for NamespaceInfo
impl UnwindSafe for NamespaceInfo
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