pub enum PatchDialect {
N3,
SparqlUpdate,
JsonPatch,
}Expand description
Pick a PATCH dialect from the Content-Type header.
Variants§
Trait Implementations§
Source§impl Clone for PatchDialect
impl Clone for PatchDialect
Source§fn clone(&self) -> PatchDialect
fn clone(&self) -> PatchDialect
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 PatchDialect
impl Debug for PatchDialect
Source§impl PartialEq for PatchDialect
impl PartialEq for PatchDialect
Source§fn eq(&self, other: &PatchDialect) -> bool
fn eq(&self, other: &PatchDialect) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PatchDialect
impl Eq for PatchDialect
impl StructuralPartialEq for PatchDialect
Auto Trait Implementations§
impl Freeze for PatchDialect
impl RefUnwindSafe for PatchDialect
impl Send for PatchDialect
impl Sync for PatchDialect
impl Unpin for PatchDialect
impl UnsafeUnpin for PatchDialect
impl UnwindSafe for PatchDialect
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