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