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