pub struct ClaimPath {
pub namespace: String,
pub name: String,
}Expand description
A path identifying a specific claim, optionally within a namespace.
Fields§
§namespace: StringNamespace (empty string for default/flat namespace).
name: StringClaim name within the namespace.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ClaimPath
impl<'de> Deserialize<'de> for ClaimPath
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 ClaimPath
impl StructuralPartialEq for ClaimPath
Auto Trait Implementations§
impl Freeze for ClaimPath
impl RefUnwindSafe for ClaimPath
impl Send for ClaimPath
impl Sync for ClaimPath
impl Unpin for ClaimPath
impl UnwindSafe for ClaimPath
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