pub struct ListOutcome {
pub action: CommandAction,
pub team: TeamName,
pub agent: AgentName,
pub selection_mode: ReadSelection,
pub history_collapsed: bool,
pub count: usize,
pub rows: Vec<ListRow>,
pub bucket_counts: BucketCounts,
}Fields§
§action: CommandAction§team: TeamName§agent: AgentName§selection_mode: ReadSelection§history_collapsed: bool§count: usize§rows: Vec<ListRow>§bucket_counts: BucketCountsTrait Implementations§
Source§impl Clone for ListOutcome
impl Clone for ListOutcome
Source§fn clone(&self) -> ListOutcome
fn clone(&self) -> ListOutcome
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 ListOutcome
impl Debug for ListOutcome
Source§impl<'de> Deserialize<'de> for ListOutcome
impl<'de> Deserialize<'de> for ListOutcome
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ListOutcome
impl RefUnwindSafe for ListOutcome
impl Send for ListOutcome
impl Sync for ListOutcome
impl Unpin for ListOutcome
impl UnsafeUnpin for ListOutcome
impl UnwindSafe for ListOutcome
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