pub struct SelectedList {
pub commit: String,
pub changed: Vec<String>,
pub selected: Vec<String>,
}Fields§
§commit: String§changed: Vec<String>§selected: Vec<String>Trait Implementations§
Source§impl Clone for SelectedList
impl Clone for SelectedList
Source§fn clone(&self) -> SelectedList
fn clone(&self) -> SelectedList
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 SelectedList
impl Debug for SelectedList
Source§impl Default for SelectedList
impl Default for SelectedList
Source§fn default() -> SelectedList
fn default() -> SelectedList
Returns the “default value” for a type. Read more
Source§impl PartialEq for SelectedList
impl PartialEq for SelectedList
Source§fn eq(&self, other: &SelectedList) -> bool
fn eq(&self, other: &SelectedList) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SelectedList
Auto Trait Implementations§
impl Freeze for SelectedList
impl RefUnwindSafe for SelectedList
impl Send for SelectedList
impl Sync for SelectedList
impl Unpin for SelectedList
impl UnsafeUnpin for SelectedList
impl UnwindSafe for SelectedList
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