Struct plugx_config::parser::yaml::ConfigurationParserYaml
source · pub struct ConfigurationParserYaml;Implementations§
Trait Implementations§
source§impl Clone for ConfigurationParserYaml
impl Clone for ConfigurationParserYaml
source§fn clone(&self) -> ConfigurationParserYaml
fn clone(&self) -> ConfigurationParserYaml
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 ConfigurationParser for ConfigurationParserYaml
impl ConfigurationParser for ConfigurationParserYaml
source§fn supported_format_list(&self) -> Vec<String>
fn supported_format_list(&self) -> Vec<String>
Supported format list (e.g. “yml”)
source§fn is_format_supported(&self, bytes: &[u8]) -> Option<bool>
fn is_format_supported(&self, bytes: &[u8]) -> Option<bool>
Checks if provided byte slice is ok for future parsing. (e.g. is it YAML at all or not)
fn parse(&self, bytes: &[u8]) -> Result<Input, ConfigurationParserError>
source§impl Debug for ConfigurationParserYaml
impl Debug for ConfigurationParserYaml
source§impl Default for ConfigurationParserYaml
impl Default for ConfigurationParserYaml
source§fn default() -> ConfigurationParserYaml
fn default() -> ConfigurationParserYaml
Returns the “default value” for a type. Read more
source§impl Display for ConfigurationParserYaml
impl Display for ConfigurationParserYaml
impl Copy for ConfigurationParserYaml
Auto Trait Implementations§
impl RefUnwindSafe for ConfigurationParserYaml
impl Send for ConfigurationParserYaml
impl Sync for ConfigurationParserYaml
impl Unpin for ConfigurationParserYaml
impl UnwindSafe for ConfigurationParserYaml
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