pub struct AssigneeOption {
pub id: String,
pub display_name: String,
}Expand description
One entry in the assignee <select> on the issue form.
Lives in core rather than web because the candidate set is a
domain concept (“users who can be assigned to issues in this
project”), not a presentation concept. When team / organisation
support lands, the candidate set will broaden, but the shape of
each option stays the same.
Fields§
§id: String§display_name: StringTrait Implementations§
Source§impl Clone for AssigneeOption
impl Clone for AssigneeOption
Source§fn clone(&self) -> AssigneeOption
fn clone(&self) -> AssigneeOption
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 moreAuto Trait Implementations§
impl Freeze for AssigneeOption
impl RefUnwindSafe for AssigneeOption
impl Send for AssigneeOption
impl Sync for AssigneeOption
impl Unpin for AssigneeOption
impl UnsafeUnpin for AssigneeOption
impl UnwindSafe for AssigneeOption
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