#[non_exhaustive]pub enum ExposeScalarKind {
Number,
String,
}Expand description
The YAML scalar category of one authored service expose item.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for ExposeScalarKind
impl Clone for ExposeScalarKind
Source§fn clone(&self) -> ExposeScalarKind
fn clone(&self) -> ExposeScalarKind
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 ExposeScalarKind
Source§impl Debug for ExposeScalarKind
impl Debug for ExposeScalarKind
impl Eq for ExposeScalarKind
Source§impl Hash for ExposeScalarKind
impl Hash for ExposeScalarKind
Source§impl PartialEq for ExposeScalarKind
impl PartialEq for ExposeScalarKind
impl StructuralPartialEq for ExposeScalarKind
Auto Trait Implementations§
impl Freeze for ExposeScalarKind
impl RefUnwindSafe for ExposeScalarKind
impl Send for ExposeScalarKind
impl Sync for ExposeScalarKind
impl Unpin for ExposeScalarKind
impl UnsafeUnpin for ExposeScalarKind
impl UnwindSafe for ExposeScalarKind
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