pub struct ResearchCondition {
pub field_name: String,
pub operation: String,
pub field_values: Vec<String>,
}Fields§
§field_name: String§operation: String§field_values: Vec<String>Trait Implementations§
Source§impl Clone for ResearchCondition
impl Clone for ResearchCondition
Source§fn clone(&self) -> ResearchCondition
fn clone(&self) -> ResearchCondition
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ResearchCondition
impl Debug for ResearchCondition
Source§impl<'de> Deserialize<'de> for ResearchCondition
impl<'de> Deserialize<'de> for ResearchCondition
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 ResearchCondition
impl RefUnwindSafe for ResearchCondition
impl Send for ResearchCondition
impl Sync for ResearchCondition
impl Unpin for ResearchCondition
impl UnsafeUnpin for ResearchCondition
impl UnwindSafe for ResearchCondition
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