pub struct RemapEntry {
pub from_key: String,
pub to_key: String,
}Expand description
A single key remapping entry
Fields§
§from_key: StringSource key (the key being remapped)
to_key: StringTarget key (what the source key becomes)
Trait Implementations§
Source§impl Clone for RemapEntry
impl Clone for RemapEntry
Source§fn clone(&self) -> RemapEntry
fn clone(&self) -> RemapEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 RemapEntry
impl Debug for RemapEntry
Source§impl<'de> Deserialize<'de> for RemapEntry
impl<'de> Deserialize<'de> for RemapEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RemapEntry
impl PartialEq for RemapEntry
Source§impl Serialize for RemapEntry
impl Serialize for RemapEntry
impl StructuralPartialEq for RemapEntry
Auto Trait Implementations§
impl Freeze for RemapEntry
impl RefUnwindSafe for RemapEntry
impl Send for RemapEntry
impl Sync for RemapEntry
impl Unpin for RemapEntry
impl UnsafeUnpin for RemapEntry
impl UnwindSafe for RemapEntry
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