pub struct ReviewCardRecord {
pub id: Option<String>,
pub title: Option<String>,
pub location_text: Option<String>,
pub unsafe_operation: Option<String>,
pub operation_family: Option<String>,
}Expand description
One ReviewCard row from cards.json.
Fields§
§id: Option<String>§title: Option<String>§location_text: Option<String>§unsafe_operation: Option<String>§operation_family: Option<String>Trait Implementations§
Source§impl Clone for ReviewCardRecord
impl Clone for ReviewCardRecord
Source§fn clone(&self) -> ReviewCardRecord
fn clone(&self) -> ReviewCardRecord
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 ReviewCardRecord
impl Debug for ReviewCardRecord
Source§impl Default for ReviewCardRecord
impl Default for ReviewCardRecord
Source§fn default() -> ReviewCardRecord
fn default() -> ReviewCardRecord
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReviewCardRecord
impl<'de> Deserialize<'de> for ReviewCardRecord
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
impl Eq for ReviewCardRecord
Source§impl PartialEq for ReviewCardRecord
impl PartialEq for ReviewCardRecord
Source§fn eq(&self, other: &ReviewCardRecord) -> bool
fn eq(&self, other: &ReviewCardRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ReviewCardRecord
impl Serialize for ReviewCardRecord
impl StructuralPartialEq for ReviewCardRecord
Auto Trait Implementations§
impl Freeze for ReviewCardRecord
impl RefUnwindSafe for ReviewCardRecord
impl Send for ReviewCardRecord
impl Sync for ReviewCardRecord
impl Unpin for ReviewCardRecord
impl UnsafeUnpin for ReviewCardRecord
impl UnwindSafe for ReviewCardRecord
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