pub struct NoteStoreListAccessibleBusinessNotebooksResult {
pub result_value: Option<Vec<Notebook>>,
pub user_exception: Option<EDAMUserException>,
pub system_exception: Option<EDAMSystemException>,
}Fields§
§result_value: Option<Vec<Notebook>>§user_exception: Option<EDAMUserException>§system_exception: Option<EDAMSystemException>Implementations§
Source§impl NoteStoreListAccessibleBusinessNotebooksResult
impl NoteStoreListAccessibleBusinessNotebooksResult
pub fn ok_or(self) -> Result<Vec<Notebook>>
pub fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<NoteStoreListAccessibleBusinessNotebooksResult>
pub fn write_to_out_protocol( &self, o_prot: &mut dyn TOutputProtocol, ) -> Result<()>
Trait Implementations§
Source§impl Clone for NoteStoreListAccessibleBusinessNotebooksResult
impl Clone for NoteStoreListAccessibleBusinessNotebooksResult
Source§fn clone(&self) -> NoteStoreListAccessibleBusinessNotebooksResult
fn clone(&self) -> NoteStoreListAccessibleBusinessNotebooksResult
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 moreimpl Eq for NoteStoreListAccessibleBusinessNotebooksResult
Source§impl Ord for NoteStoreListAccessibleBusinessNotebooksResult
impl Ord for NoteStoreListAccessibleBusinessNotebooksResult
Source§fn cmp(
&self,
other: &NoteStoreListAccessibleBusinessNotebooksResult,
) -> Ordering
fn cmp( &self, other: &NoteStoreListAccessibleBusinessNotebooksResult, ) -> 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
Source§impl PartialOrd for NoteStoreListAccessibleBusinessNotebooksResult
impl PartialOrd for NoteStoreListAccessibleBusinessNotebooksResult
Source§fn partial_cmp(
&self,
other: &NoteStoreListAccessibleBusinessNotebooksResult,
) -> Option<Ordering>
fn partial_cmp( &self, other: &NoteStoreListAccessibleBusinessNotebooksResult, ) -> Option<Ordering>
impl StructuralPartialEq for NoteStoreListAccessibleBusinessNotebooksResult
Auto Trait Implementations§
impl Freeze for NoteStoreListAccessibleBusinessNotebooksResult
impl RefUnwindSafe for NoteStoreListAccessibleBusinessNotebooksResult
impl Send for NoteStoreListAccessibleBusinessNotebooksResult
impl Sync for NoteStoreListAccessibleBusinessNotebooksResult
impl Unpin for NoteStoreListAccessibleBusinessNotebooksResult
impl UnsafeUnpin for NoteStoreListAccessibleBusinessNotebooksResult
impl UnwindSafe for NoteStoreListAccessibleBusinessNotebooksResult
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