pub enum PatchId {
Numeric(u32),
String(Vec<u8>),
}Expand description
Id for a patch which will be subbed into a URL template. The spec allows integer or string IDs.
Variants§
Trait Implementations§
impl Eq for PatchId
impl StructuralPartialEq for PatchId
Auto Trait Implementations§
impl Freeze for PatchId
impl RefUnwindSafe for PatchId
impl Send for PatchId
impl Sync for PatchId
impl Unpin for PatchId
impl UnsafeUnpin for PatchId
impl UnwindSafe for PatchId
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