pub enum TileContent {
Theorem(String),
Proof(String),
Code(String),
Benchmark(String),
Caveat(String),
EmpiricalData(String),
Falsification(String),
Constraint(String),
}Variants§
Theorem(String)
Proof(String)
Code(String)
Benchmark(String)
Caveat(String)
EmpiricalData(String)
Falsification(String)
Constraint(String)
Trait Implementations§
Source§impl Clone for TileContent
impl Clone for TileContent
Source§fn clone(&self) -> TileContent
fn clone(&self) -> TileContent
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 moreSource§impl Debug for TileContent
impl Debug for TileContent
Source§impl<'de> Deserialize<'de> for TileContent
impl<'de> Deserialize<'de> for TileContent
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 PartialEq for TileContent
impl PartialEq for TileContent
Source§fn eq(&self, other: &TileContent) -> bool
fn eq(&self, other: &TileContent) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TileContent
impl Serialize for TileContent
impl Eq for TileContent
impl StructuralPartialEq for TileContent
Auto Trait Implementations§
impl Freeze for TileContent
impl RefUnwindSafe for TileContent
impl Send for TileContent
impl Sync for TileContent
impl Unpin for TileContent
impl UnsafeUnpin for TileContent
impl UnwindSafe for TileContent
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