pub struct YamlEditError { /* private fields */ }Expand description
Failure while applying a pointer-addressed YAML edit.
Trait Implementations§
Source§impl Clone for YamlEditError
impl Clone for YamlEditError
Source§fn clone(&self) -> YamlEditError
fn clone(&self) -> YamlEditError
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 YamlEditError
impl Debug for YamlEditError
Source§impl Display for YamlEditError
impl Display for YamlEditError
impl Eq for YamlEditError
Source§impl Error for YamlEditError
impl Error for YamlEditError
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<FragmentError> for YamlEditError
impl From<FragmentError> for YamlEditError
Source§fn from(error: FragmentError) -> YamlEditError
fn from(error: FragmentError) -> YamlEditError
Converts to this type from the input type.
Source§impl From<PointerError> for YamlEditError
impl From<PointerError> for YamlEditError
Source§fn from(error: PointerError) -> YamlEditError
fn from(error: PointerError) -> YamlEditError
Converts to this type from the input type.
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 From<YamlError> for YamlEditError
impl From<YamlError> for YamlEditError
Source§fn from(error: YamlError) -> YamlEditError
fn from(error: YamlError) -> YamlEditError
Converts to this type from the input type.
Source§impl PartialEq for YamlEditError
impl PartialEq for YamlEditError
impl StructuralPartialEq for YamlEditError
Auto Trait Implementations§
impl Freeze for YamlEditError
impl RefUnwindSafe for YamlEditError
impl Send for YamlEditError
impl Sync for YamlEditError
impl Unpin for YamlEditError
impl UnsafeUnpin for YamlEditError
impl UnwindSafe for YamlEditError
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