pub enum BooleanOrSchema {
Boolean(bool),
Schema(YamlSchema),
}Expand description
Represents either a literal boolean value or a YamlSchema
Variants§
Boolean(bool)
Schema(YamlSchema)
Implementations§
Source§impl BooleanOrSchema
impl BooleanOrSchema
pub fn schema(schema: YamlSchema) -> Self
Trait Implementations§
Source§impl Debug for BooleanOrSchema
impl Debug for BooleanOrSchema
Source§impl Display for BooleanOrSchema
impl Display for BooleanOrSchema
Source§impl PartialEq for BooleanOrSchema
impl PartialEq for BooleanOrSchema
impl StructuralPartialEq for BooleanOrSchema
Auto Trait Implementations§
impl Freeze for BooleanOrSchema
impl RefUnwindSafe for BooleanOrSchema
impl Send for BooleanOrSchema
impl Sync for BooleanOrSchema
impl Unpin for BooleanOrSchema
impl UnsafeUnpin for BooleanOrSchema
impl UnwindSafe for BooleanOrSchema
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.