pub struct HostedNamespaceInfo {
pub namespace_id: String,
pub kind: String,
pub slug: String,
pub parent_id: Option<String>,
pub display_name: Option<String>,
pub full_path: String,
}Fields§
§namespace_id: String§kind: String§slug: String§parent_id: Option<String>§display_name: Option<String>§full_path: StringTrait Implementations§
Source§impl Clone for HostedNamespaceInfo
impl Clone for HostedNamespaceInfo
Source§fn clone(&self) -> HostedNamespaceInfo
fn clone(&self) -> HostedNamespaceInfo
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 HostedNamespaceInfo
impl Debug for HostedNamespaceInfo
Source§impl<'de> Deserialize<'de> for HostedNamespaceInfo
impl<'de> Deserialize<'de> for HostedNamespaceInfo
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 HostedNamespaceInfo
impl RefUnwindSafe for HostedNamespaceInfo
impl Send for HostedNamespaceInfo
impl Sync for HostedNamespaceInfo
impl Unpin for HostedNamespaceInfo
impl UnsafeUnpin for HostedNamespaceInfo
impl UnwindSafe for HostedNamespaceInfo
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