pub enum Stage {
Is,
Dis,
Cd,
Unknown,
}Expand description
ISO publication stage of a schema edition.
edition and stage are independent axes: a single AP edition passes
through Cd → Dis → Is. Use stage == Is (not the presence of an
edition) to test whether the file declares a published standard.
Variants§
Is
International Standard (published).
Dis
Draft International Standard.
Cd
Committee Draft.
Unknown
Stage could not be determined from the FILE_SCHEMA.
Trait Implementations§
impl Copy for Stage
impl Eq for Stage
impl StructuralPartialEq for Stage
Auto Trait Implementations§
impl Freeze for Stage
impl RefUnwindSafe for Stage
impl Send for Stage
impl Sync for Stage
impl Unpin for Stage
impl UnsafeUnpin for Stage
impl UnwindSafe for Stage
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