pub struct SemanticValueError { /* private fields */ }Expand description
Failure while projecting YAML nodes into the JSON-compatible data model.
Trait Implementations§
Source§impl Clone for SemanticValueError
impl Clone for SemanticValueError
Source§fn clone(&self) -> SemanticValueError
fn clone(&self) -> SemanticValueError
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 SemanticValueError
impl Debug for SemanticValueError
Source§impl Display for SemanticValueError
impl Display for SemanticValueError
impl Eq for SemanticValueError
Source§impl Error for SemanticValueError
impl Error for SemanticValueError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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<SemanticValueError> for YamlEditError
impl From<SemanticValueError> for YamlEditError
Source§fn from(error: SemanticValueError) -> YamlEditError
fn from(error: SemanticValueError) -> YamlEditError
Converts to this type from the input type.
Source§impl PartialEq for SemanticValueError
impl PartialEq for SemanticValueError
impl StructuralPartialEq for SemanticValueError
Auto Trait Implementations§
impl Freeze for SemanticValueError
impl RefUnwindSafe for SemanticValueError
impl Send for SemanticValueError
impl Sync for SemanticValueError
impl Unpin for SemanticValueError
impl UnsafeUnpin for SemanticValueError
impl UnwindSafe for SemanticValueError
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