pub struct ListMapping {
pub partition: u32,
pub values: Vec<String>,
}Expand description
A mapping for list partitioning.
Fields§
§partition: u32§values: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for ListMapping
impl Clone for ListMapping
Source§fn clone(&self) -> ListMapping
fn clone(&self) -> ListMapping
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 ListMapping
impl Debug for ListMapping
Source§impl<'de> Deserialize<'de> for ListMapping
impl<'de> Deserialize<'de> for ListMapping
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
Auto Trait Implementations§
impl Freeze for ListMapping
impl RefUnwindSafe for ListMapping
impl Send for ListMapping
impl Sync for ListMapping
impl Unpin for ListMapping
impl UnsafeUnpin for ListMapping
impl UnwindSafe for ListMapping
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