pub struct AssignedStatusOption {
pub id: StatusOptionId,
pub name: ColumnName,
}Expand description
The inseparable id and name of an assigned option.
Fields§
§id: StatusOptionIdGitHub’s stable id.
name: ColumnNameThe visible name.
Trait Implementations§
Source§impl Clone for AssignedStatusOption
impl Clone for AssignedStatusOption
Source§fn clone(&self) -> AssignedStatusOption
fn clone(&self) -> AssignedStatusOption
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 moreSource§impl Debug for AssignedStatusOption
impl Debug for AssignedStatusOption
impl Eq for AssignedStatusOption
Source§impl JsonSchema for AssignedStatusOption
impl JsonSchema for AssignedStatusOption
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 AssignedStatusOption
impl PartialEq for AssignedStatusOption
Source§impl Serialize for AssignedStatusOption
impl Serialize for AssignedStatusOption
impl StructuralPartialEq for AssignedStatusOption
Auto Trait Implementations§
impl Freeze for AssignedStatusOption
impl RefUnwindSafe for AssignedStatusOption
impl Send for AssignedStatusOption
impl Sync for AssignedStatusOption
impl Unpin for AssignedStatusOption
impl UnsafeUnpin for AssignedStatusOption
impl UnwindSafe for AssignedStatusOption
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