pub struct ParsedNamespace {
pub domain: String,
pub component: String,
pub action: String,
}Expand description
Parsed 4-segment namespace components.
Fields§
§domain: StringDomain (e.g. cognition).
component: StringComponent (e.g. plan).
action: StringAction (e.g. created).
Trait Implementations§
Source§impl Clone for ParsedNamespace
impl Clone for ParsedNamespace
Source§fn clone(&self) -> ParsedNamespace
fn clone(&self) -> ParsedNamespace
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 ParsedNamespace
impl Debug for ParsedNamespace
impl Eq for ParsedNamespace
Source§impl PartialEq for ParsedNamespace
impl PartialEq for ParsedNamespace
impl StructuralPartialEq for ParsedNamespace
Auto Trait Implementations§
impl Freeze for ParsedNamespace
impl RefUnwindSafe for ParsedNamespace
impl Send for ParsedNamespace
impl Sync for ParsedNamespace
impl Unpin for ParsedNamespace
impl UnsafeUnpin for ParsedNamespace
impl UnwindSafe for ParsedNamespace
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