pub enum EntrySyntax {
Mapping,
ListKeyValue,
ListKeyOnly,
}Expand description
The authored form that contributed one semantic mapping entry.
Variants§
Mapping
A normal YAML mapping entry.
ListKeyValue
A KEY=VALUE scalar from a Compose list form.
ListKeyOnly
A key-only scalar from a Compose list form.
Trait Implementations§
Source§impl Clone for EntrySyntax
impl Clone for EntrySyntax
Source§fn clone(&self) -> EntrySyntax
fn clone(&self) -> EntrySyntax
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 EntrySyntax
Source§impl Debug for EntrySyntax
impl Debug for EntrySyntax
impl Eq for EntrySyntax
Source§impl Hash for EntrySyntax
impl Hash for EntrySyntax
Source§impl PartialEq for EntrySyntax
impl PartialEq for EntrySyntax
impl StructuralPartialEq for EntrySyntax
Auto Trait Implementations§
impl Freeze for EntrySyntax
impl RefUnwindSafe for EntrySyntax
impl Send for EntrySyntax
impl Sync for EntrySyntax
impl Unpin for EntrySyntax
impl UnsafeUnpin for EntrySyntax
impl UnwindSafe for EntrySyntax
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