pub struct DocumentMask {
pub field_paths: Vec<String>,
}Expand description
A set of field paths on a document.
Fields§
§field_paths: Vec<String>The list of field paths in the mask.
Trait Implementations§
Source§impl Clone for DocumentMask
impl Clone for DocumentMask
Source§fn clone(&self) -> DocumentMask
fn clone(&self) -> DocumentMask
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 DocumentMask
impl Debug for DocumentMask
Source§impl<'de> Deserialize<'de> for DocumentMask
impl<'de> Deserialize<'de> for DocumentMask
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 DocumentMask
impl RefUnwindSafe for DocumentMask
impl Send for DocumentMask
impl Sync for DocumentMask
impl Unpin for DocumentMask
impl UnwindSafe for DocumentMask
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