pub struct MissionScope {
pub primary_repo: String,
pub summary: String,
}Expand description
Mission scope with a primary repository and concise summary.
Fields§
§primary_repo: StringPrimary repository the mission operates in.
summary: StringConcise human-readable summary of the scope.
Implementations§
Trait Implementations§
Source§impl Clone for MissionScope
impl Clone for MissionScope
Source§fn clone(&self) -> MissionScope
fn clone(&self) -> MissionScope
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 MissionScope
impl Debug for MissionScope
impl Eq for MissionScope
Source§impl PartialEq for MissionScope
impl PartialEq for MissionScope
Source§fn eq(&self, other: &MissionScope) -> bool
fn eq(&self, other: &MissionScope) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MissionScope
Auto Trait Implementations§
impl Freeze for MissionScope
impl RefUnwindSafe for MissionScope
impl Send for MissionScope
impl Sync for MissionScope
impl Unpin for MissionScope
impl UnsafeUnpin for MissionScope
impl UnwindSafe for MissionScope
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