pub struct AllowTrailingCommas;Expand description
Defaults allowTrailingCommas to true, for use with json-language-server.
This can be applied to any schema that will be treated as jsonc.
Note that this is non-recursive and only applied to the root schema.
Trait Implementations§
Source§impl Clone for AllowTrailingCommas
impl Clone for AllowTrailingCommas
Source§fn clone(&self) -> AllowTrailingCommas
fn clone(&self) -> AllowTrailingCommas
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 moreAuto Trait Implementations§
impl Freeze for AllowTrailingCommas
impl RefUnwindSafe for AllowTrailingCommas
impl Send for AllowTrailingCommas
impl Sync for AllowTrailingCommas
impl Unpin for AllowTrailingCommas
impl UnsafeUnpin for AllowTrailingCommas
impl UnwindSafe for AllowTrailingCommas
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> GenTransform for T
impl<T> GenTransform for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more