pub enum TriviaAttachmentPolicy {
ContainmentLink,
TokenLink,
Both,
}Expand description
Trivia attachment strategy.
Variants§
ContainmentLink
Attach trivia to the containing syntax link.
TokenLink
Attach trivia to the token link.
Both
Emit both attachment links when they can coexist.
Trait Implementations§
Source§impl Clone for TriviaAttachmentPolicy
impl Clone for TriviaAttachmentPolicy
Source§fn clone(&self) -> TriviaAttachmentPolicy
fn clone(&self) -> TriviaAttachmentPolicy
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 TriviaAttachmentPolicy
Source§impl Debug for TriviaAttachmentPolicy
impl Debug for TriviaAttachmentPolicy
impl Eq for TriviaAttachmentPolicy
Source§impl PartialEq for TriviaAttachmentPolicy
impl PartialEq for TriviaAttachmentPolicy
Source§fn eq(&self, other: &TriviaAttachmentPolicy) -> bool
fn eq(&self, other: &TriviaAttachmentPolicy) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TriviaAttachmentPolicy
Auto Trait Implementations§
impl Freeze for TriviaAttachmentPolicy
impl RefUnwindSafe for TriviaAttachmentPolicy
impl Send for TriviaAttachmentPolicy
impl Sync for TriviaAttachmentPolicy
impl Unpin for TriviaAttachmentPolicy
impl UnsafeUnpin for TriviaAttachmentPolicy
impl UnwindSafe for TriviaAttachmentPolicy
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