pub struct FactoryInfo {
pub name: String,
pub supported_backends: Vec<String>,
pub default_backend: String,
}Expand description
Information about a parser factory.
Fields§
§name: StringFactory name.
supported_backends: Vec<String>Supported backends.
default_backend: StringDefault backend.
Trait Implementations§
Source§impl Clone for FactoryInfo
impl Clone for FactoryInfo
Source§fn clone(&self) -> FactoryInfo
fn clone(&self) -> FactoryInfo
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 moreAuto Trait Implementations§
impl Freeze for FactoryInfo
impl RefUnwindSafe for FactoryInfo
impl Send for FactoryInfo
impl Sync for FactoryInfo
impl Unpin for FactoryInfo
impl UnsafeUnpin for FactoryInfo
impl UnwindSafe for FactoryInfo
Blanket Implementations§
impl<T> Allocation for T
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