Struct nektar::MetaException
source · pub struct MetaException {
pub message: Option<String>,
}Fields§
§message: Option<String>Implementations§
source§impl MetaException
impl MetaException
Trait Implementations§
source§impl Clone for MetaException
impl Clone for MetaException
source§fn clone(&self) -> MetaException
fn clone(&self) -> MetaException
Returns a copy of the value. Read more
1.0.0 · 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 MetaException
impl Debug for MetaException
source§impl Default for MetaException
impl Default for MetaException
source§fn default() -> MetaException
fn default() -> MetaException
Returns the “default value” for a type. Read more
source§impl Display for MetaException
impl Display for MetaException
source§impl Error for MetaException
impl Error for MetaException
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<MetaException> for Error
impl From<MetaException> for Error
source§fn from(e: MetaException) -> Self
fn from(e: MetaException) -> Self
Converts to this type from the input type.
source§impl Hash for MetaException
impl Hash for MetaException
source§impl Ord for MetaException
impl Ord for MetaException
source§fn cmp(&self, other: &MetaException) -> Ordering
fn cmp(&self, other: &MetaException) -> Ordering
1.21.0 · 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 MetaException
impl PartialEq for MetaException
source§fn eq(&self, other: &MetaException) -> bool
fn eq(&self, other: &MetaException) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for MetaException
impl PartialOrd for MetaException
source§fn partial_cmp(&self, other: &MetaException) -> Option<Ordering>
fn partial_cmp(&self, other: &MetaException) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresource§impl TSerializable for MetaException
impl TSerializable for MetaException
fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol ) -> Result<MetaException>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for MetaException
impl StructuralEq for MetaException
impl StructuralPartialEq for MetaException
Auto Trait Implementations§
impl RefUnwindSafe for MetaException
impl Send for MetaException
impl Sync for MetaException
impl Unpin for MetaException
impl UnwindSafe for MetaException
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