pub enum BoardField {
Status,
Priority,
}Expand description
One board field the guarded setup reads and writes — every one it reads, and the only ones it writes.
Variants§
Status
The single-select Status field every instance’s status_mapping resolves into.
Priority
The single-select Priority field an instance’s priority_mapping resolves into.
Implementations§
Trait Implementations§
Source§impl Clone for BoardField
impl Clone for BoardField
impl Copy for BoardField
Source§impl Debug for BoardField
impl Debug for BoardField
impl Eq for BoardField
Source§impl JsonSchema for BoardField
impl JsonSchema for BoardField
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 Ord for BoardField
impl Ord for BoardField
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for BoardField
impl PartialEq for BoardField
Source§impl PartialOrd for BoardField
impl PartialOrd for BoardField
Source§impl Serialize for BoardField
impl Serialize for BoardField
impl StructuralPartialEq for BoardField
Auto Trait Implementations§
impl Freeze for BoardField
impl RefUnwindSafe for BoardField
impl Send for BoardField
impl Sync for BoardField
impl Unpin for BoardField
impl UnsafeUnpin for BoardField
impl UnwindSafe for BoardField
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