pub struct ABNFGrammar {
pub abnf_strings: Option<Vec<String>>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§abnf_strings: Option<Vec<String>>All declarations and rules of an ABNF grammar broken up into multiple strings that will end up concatenated.
Trait Implementations§
Source§impl Clone for ABNFGrammar
impl Clone for ABNFGrammar
Source§fn clone(&self) -> ABNFGrammar
fn clone(&self) -> ABNFGrammar
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 ABNFGrammar
impl Debug for ABNFGrammar
Source§impl Default for ABNFGrammar
impl Default for ABNFGrammar
Source§fn default() -> ABNFGrammar
fn default() -> ABNFGrammar
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ABNFGrammar
impl<'de> Deserialize<'de> for ABNFGrammar
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ABNFGrammar
impl Serialize for ABNFGrammar
impl Part for ABNFGrammar
Auto Trait Implementations§
impl Freeze for ABNFGrammar
impl RefUnwindSafe for ABNFGrammar
impl Send for ABNFGrammar
impl Sync for ABNFGrammar
impl Unpin for ABNFGrammar
impl UnwindSafe for ABNFGrammar
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