pub enum FreshMarker {
Value,
}Expand description
The "fresh" literal of ObservationSource.
Variants§
Value
The only admissible wire value.
Trait Implementations§
Source§impl Clone for FreshMarker
impl Clone for FreshMarker
Source§fn clone(&self) -> FreshMarker
fn clone(&self) -> FreshMarker
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 moreimpl Copy for FreshMarker
Source§impl Debug for FreshMarker
impl Debug for FreshMarker
Source§impl Default for FreshMarker
impl Default for FreshMarker
Source§fn default() -> FreshMarker
fn default() -> FreshMarker
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FreshMarker
impl<'de> Deserialize<'de> for FreshMarker
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
impl Eq for FreshMarker
Source§impl Hash for FreshMarker
impl Hash for FreshMarker
Source§impl JsonSchema for FreshMarker
impl JsonSchema for FreshMarker
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl Ord for FreshMarker
impl Ord for FreshMarker
Source§fn cmp(&self, other: &FreshMarker) -> Ordering
fn cmp(&self, other: &FreshMarker) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FreshMarker
impl PartialEq for FreshMarker
Source§impl PartialOrd for FreshMarker
impl PartialOrd for FreshMarker
Source§impl Serialize for FreshMarker
impl Serialize for FreshMarker
impl StructuralPartialEq for FreshMarker
Auto Trait Implementations§
impl Freeze for FreshMarker
impl RefUnwindSafe for FreshMarker
impl Send for FreshMarker
impl Sync for FreshMarker
impl Unpin for FreshMarker
impl UnsafeUnpin for FreshMarker
impl UnwindSafe for FreshMarker
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