pub enum ValidValue {
NumberRange(NumberRange),
TimestampRange(TimestampRange),
Element(Value),
}Expand description
Represents a valid value to be ued within valid_values constraint
ValidValue could either be a range or Element
Grammar: <VALID_VALUE> ::= <VALUE>
| <RANGE<TIMESTAMP>>
| <RANGE<NUMBER>>valid_values: <https://amazon-ion.github.io/ion-schema/docs/isl-1-0/spec#valid_values>
Variants§
Implementations§
Source§impl ValidValue
impl ValidValue
pub fn from_ion_element( element: &Element, isl_version: IslVersion, ) -> IonSchemaResult<Self>
Trait Implementations§
Source§impl Clone for ValidValue
impl Clone for ValidValue
Source§fn clone(&self) -> ValidValue
fn clone(&self) -> ValidValue
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 ValidValue
impl Debug for ValidValue
Source§impl Display for ValidValue
impl Display for ValidValue
Source§impl PartialEq for ValidValue
impl PartialEq for ValidValue
Source§fn eq(&self, other: &ValidValue) -> bool
fn eq(&self, other: &ValidValue) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl WriteAsIon for ValidValue
impl WriteAsIon for ValidValue
Source§fn write_as_ion<V: ValueWriter>(&self, writer: V) -> IonResult<()>
fn write_as_ion<V: ValueWriter>(&self, writer: V) -> IonResult<()>
Maps this value to the Ion data model using the provided
ValueWriter implementation.Source§fn encode_as<E, C>(
&self,
config: C,
) -> Result<<E as Encoding>::Output, IonError>
fn encode_as<E, C>( &self, config: C, ) -> Result<<E as Encoding>::Output, IonError>
Encodes this value as an Ion stream with
self as the single top-level value.
If the requested encoding is binary of any version, returns a Vec<u8> containing the
encoded bytes. If the requested encoding is text of any version, returns a String instead. Read moreimpl StructuralPartialEq for ValidValue
Auto Trait Implementations§
impl Freeze for ValidValue
impl RefUnwindSafe for ValidValue
impl Send for ValidValue
impl Sync for ValidValue
impl Unpin for ValidValue
impl UnsafeUnpin for ValidValue
impl UnwindSafe for ValidValue
Blanket Implementations§
Source§impl<T> Annotatable for Twhere
T: WriteAsIon + ?Sized,
impl<T> Annotatable for Twhere
T: WriteAsIon + ?Sized,
Source§fn annotated_with<'a, A>(&'a self, annotations: A) -> Annotated<'a, T, A>where
A: 'a,
&'a A: AnnotationSeq<'a>,
fn annotated_with<'a, A>(&'a self, annotations: A) -> Annotated<'a, T, A>where
A: 'a,
&'a A: AnnotationSeq<'a>,
Pairs a reference to the provided value with a slice containing annotations. Read more
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
ToCompactString::to_compact_string() Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString. Read more