pub struct ManageNotebookSharesResult {
pub errors: Option<Vec<ManageNotebookSharesError>>,
}Expand description
The return value of a call to the manageNotebookShares method.
- errors
- If the method completed without throwing exceptions, some errors might still have occurred, and in that case, this field will contain the list of those errors the occurred.
Fields§
§errors: Option<Vec<ManageNotebookSharesError>>Implementations§
pub fn new<F1>(errors: F1) -> ManageNotebookSharesResult
Trait Implementations§
Source§fn clone(&self) -> ManageNotebookSharesResult
fn clone(&self) -> ManageNotebookSharesResult
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§fn default() -> ManageNotebookSharesResult
fn default() -> ManageNotebookSharesResult
Returns the “default value” for a type. Read more
Source§fn cmp(&self, other: &ManageNotebookSharesResult) -> Ordering
fn cmp(&self, other: &ManageNotebookSharesResult) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<ManageNotebookSharesResult>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
Auto Trait Implementations§
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