pub enum ReleaseStatus {
Released,
Draft,
Deprecated,
}Expand description
Status of a node set.
Variants§
Released
Node set has been released.
Draft
Node set is a draft.
Deprecated
Node set has been deprecated.
Trait Implementations§
Source§impl Debug for ReleaseStatus
impl Debug for ReleaseStatus
Source§impl FromValue for ReleaseStatus
impl FromValue for ReleaseStatus
Source§fn from_value(
node: &Node<'_, '_>,
attr: &str,
v: &str,
) -> Result<ReleaseStatus, XmlError>
fn from_value( node: &Node<'_, '_>, attr: &str, v: &str, ) -> Result<ReleaseStatus, XmlError>
Load Self from the body of a node.
v is the value being parsed, attr and node are
given for context and error handling.Auto Trait Implementations§
impl Freeze for ReleaseStatus
impl RefUnwindSafe for ReleaseStatus
impl Send for ReleaseStatus
impl Sync for ReleaseStatus
impl Unpin for ReleaseStatus
impl UnsafeUnpin for ReleaseStatus
impl UnwindSafe for ReleaseStatus
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