pub enum CoordinationStatus {
Clean,
Ahead,
Diverged,
Blocked,
MergeReady,
}Variants§
Trait Implementations§
Source§impl Clone for CoordinationStatus
impl Clone for CoordinationStatus
Source§fn clone(&self) -> CoordinationStatus
fn clone(&self) -> CoordinationStatus
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 moreimpl Copy for CoordinationStatus
Source§impl Debug for CoordinationStatus
impl Debug for CoordinationStatus
Source§impl Display for CoordinationStatus
impl Display for CoordinationStatus
impl Eq for CoordinationStatus
Source§impl JsonSchema for CoordinationStatus
impl JsonSchema for CoordinationStatus
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for CoordinationStatus
impl PartialEq for CoordinationStatus
Source§impl Serialize for CoordinationStatus
impl Serialize for CoordinationStatus
impl StructuralPartialEq for CoordinationStatus
Auto Trait Implementations§
impl Freeze for CoordinationStatus
impl RefUnwindSafe for CoordinationStatus
impl Send for CoordinationStatus
impl Sync for CoordinationStatus
impl Unpin for CoordinationStatus
impl UnsafeUnpin for CoordinationStatus
impl UnwindSafe for CoordinationStatus
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