Enum mrml::ParserIncludeLoaderOptions
source · pub enum ParserIncludeLoaderOptions {
Noop(NoopIncludeLoaderOptions),
Memory(MemoryIncludeLoaderOptions),
Local(LocalIncludeLoaderOptions),
Http(HttpIncludeLoaderOptions),
}Variants§
Noop(NoopIncludeLoaderOptions)
Memory(MemoryIncludeLoaderOptions)
Local(LocalIncludeLoaderOptions)
Http(HttpIncludeLoaderOptions)
Trait Implementations§
source§impl Clone for ParserIncludeLoaderOptions
impl Clone for ParserIncludeLoaderOptions
source§fn clone(&self) -> ParserIncludeLoaderOptions
fn clone(&self) -> ParserIncludeLoaderOptions
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 Debug for ParserIncludeLoaderOptions
impl Debug for ParserIncludeLoaderOptions
source§impl Default for ParserIncludeLoaderOptions
impl Default for ParserIncludeLoaderOptions
source§impl<'py> FromPyObject<'py> for ParserIncludeLoaderOptions
impl<'py> FromPyObject<'py> for ParserIncludeLoaderOptions
Auto Trait Implementations§
impl Freeze for ParserIncludeLoaderOptions
impl RefUnwindSafe for ParserIncludeLoaderOptions
impl Send for ParserIncludeLoaderOptions
impl Sync for ParserIncludeLoaderOptions
impl Unpin for ParserIncludeLoaderOptions
impl UnwindSafe for ParserIncludeLoaderOptions
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<'py, T> FromPyObjectBound<'_, 'py> for Twhere
T: FromPyObject<'py>,
impl<'py, T> FromPyObjectBound<'_, 'py> for Twhere
T: FromPyObject<'py>,
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more