pub struct IncludedFields {
pub excluded: Option<Vec<String>>,
pub included: Option<Vec<String>>,
pub actually_included: Option<Vec<String>>,
}
Fields§
§excluded: Option<Vec<String>>
§included: Option<Vec<String>>
§actually_included: Option<Vec<String>>
Implementations§
Source§impl IncludedFields
impl IncludedFields
pub fn new() -> IncludedFields
Trait Implementations§
Source§impl Clone for IncludedFields
impl Clone for IncludedFields
Source§fn clone(&self) -> IncludedFields
fn clone(&self) -> IncludedFields
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 IncludedFields
impl Debug for IncludedFields
Source§impl Default for IncludedFields
impl Default for IncludedFields
Source§fn default() -> IncludedFields
fn default() -> IncludedFields
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IncludedFields
impl<'de> Deserialize<'de> for IncludedFields
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 IncludedFields
impl PartialEq for IncludedFields
Source§impl Serialize for IncludedFields
impl Serialize for IncludedFields
impl StructuralPartialEq for IncludedFields
Auto Trait Implementations§
impl Freeze for IncludedFields
impl RefUnwindSafe for IncludedFields
impl Send for IncludedFields
impl Sync for IncludedFields
impl Unpin for IncludedFields
impl UnwindSafe for IncludedFields
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