pub enum SubagentView {
List(SubagentListView),
Detail(SubagentDetailView),
}Variants§
List(SubagentListView)
Detail(SubagentDetailView)
Trait Implementations§
Source§impl Clone for SubagentView
impl Clone for SubagentView
Source§fn clone(&self) -> SubagentView
fn clone(&self) -> SubagentView
Returns a duplicate of the value. Read more
1.0.0 · 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 SubagentView
impl Debug for SubagentView
Source§impl PartialEq for SubagentView
impl PartialEq for SubagentView
Source§impl Serialize for SubagentView
impl Serialize for SubagentView
impl Eq for SubagentView
impl StructuralPartialEq for SubagentView
Auto Trait Implementations§
impl Freeze for SubagentView
impl RefUnwindSafe for SubagentView
impl Send for SubagentView
impl Sync for SubagentView
impl Unpin for SubagentView
impl UnsafeUnpin for SubagentView
impl UnwindSafe for SubagentView
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