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