pub enum LoaderType {
Safe,
Base,
RoundTrip,
Full,
}Expand description
Type of YAML loader/dumper
Variants§
Safe
Safe loader - only basic YAML types, no code execution
Base
Base loader - minimal type set
RoundTrip
Round-trip loader - preserves formatting and comments (future)
Full
Full loader - all features including potentially unsafe operations
Trait Implementations§
Source§impl Clone for LoaderType
impl Clone for LoaderType
Source§fn clone(&self) -> LoaderType
fn clone(&self) -> LoaderType
Returns a duplicate 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 LoaderType
impl Debug for LoaderType
Source§impl PartialEq for LoaderType
impl PartialEq for LoaderType
impl Copy for LoaderType
impl Eq for LoaderType
impl StructuralPartialEq for LoaderType
Auto Trait Implementations§
impl Freeze for LoaderType
impl RefUnwindSafe for LoaderType
impl Send for LoaderType
impl Sync for LoaderType
impl Unpin for LoaderType
impl UnwindSafe for LoaderType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.