pub struct GroupResult {
pub session_id: usize,
pub success: bool,
pub output: String,
}Expand description
Result of a group operation.
Fields§
§session_id: usizeSession ID.
success: boolWhether the operation succeeded.
output: StringOutput or error.
Trait Implementations§
Source§impl Clone for GroupResult
impl Clone for GroupResult
Source§fn clone(&self) -> GroupResult
fn clone(&self) -> GroupResult
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 moreAuto Trait Implementations§
impl Freeze for GroupResult
impl RefUnwindSafe for GroupResult
impl Send for GroupResult
impl Sync for GroupResult
impl Unpin for GroupResult
impl UnwindSafe for GroupResult
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