pub enum PropVal {
String(String),
Text(String),
Int(i64),
Date(Date),
Error(PropValError),
}
Expand description
Value properties can take.
Variants§
Trait Implementations§
Source§impl PruneIncodoc for PropVal
impl PruneIncodoc for PropVal
fn prune_errors(&mut self)
fn prune_contentless(&mut self)
fn is_contentless(&self) -> bool
impl Eq for PropVal
impl StructuralPartialEq for PropVal
Auto Trait Implementations§
impl Freeze for PropVal
impl RefUnwindSafe for PropVal
impl Send for PropVal
impl Sync for PropVal
impl Unpin for PropVal
impl UnwindSafe for PropVal
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