pub struct SupportedLock(/* private fields */);Available on crate feature
xml only.Expand description
Not yet implemented.
The supportedlock property as defined in
RFC 4918.
Trait Implementations§
Source§impl Clone for SupportedLock
impl Clone for SupportedLock
Source§fn clone(&self) -> SupportedLock
fn clone(&self) -> SupportedLock
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 SupportedLock
impl Debug for SupportedLock
Source§impl Element for SupportedLock
impl Element for SupportedLock
Source§const LOCAL_NAME: &'static str = "supportedlock"
const LOCAL_NAME: &'static str = "supportedlock"
The local name of the element (the name inside the namespace), e.g.
multistatusSource§impl From<SupportedLock> for Value
impl From<SupportedLock> for Value
Source§fn from(_: SupportedLock) -> Value
fn from(_: SupportedLock) -> Value
Converts to this type from the input type.
Source§impl PartialEq for SupportedLock
impl PartialEq for SupportedLock
Source§impl TryFrom<&Value> for SupportedLock
impl TryFrom<&Value> for SupportedLock
impl StructuralPartialEq for SupportedLock
Auto Trait Implementations§
impl Freeze for SupportedLock
impl RefUnwindSafe for SupportedLock
impl Send for SupportedLock
impl Sync for SupportedLock
impl Unpin for SupportedLock
impl UnwindSafe for SupportedLock
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more