pub struct OutputProcedure {
pub _id: String,
pub _created_at: i64,
pub _created_by: String,
pub _updated_at: Option<Option<i64>>,
pub _updated_by: Option<Option<String>>,
pub occur_date: i64,
pub tactic: String,
pub tactic_label: String,
pub description: Option<Option<String>>,
pub pattern_id: Option<Option<String>>,
pub pattern_name: Option<Option<String>>,
pub extra_data: HashMap<String, Value>,
}Fields§
§_id: String§_created_at: i64§_created_by: String§_updated_at: Option<Option<i64>>§_updated_by: Option<Option<String>>§occur_date: i64§tactic: String§tactic_label: String§description: Option<Option<String>>§pattern_id: Option<Option<String>>§pattern_name: Option<Option<String>>§extra_data: HashMap<String, Value>Implementations§
Trait Implementations§
Source§impl Clone for OutputProcedure
impl Clone for OutputProcedure
Source§fn clone(&self) -> OutputProcedure
fn clone(&self) -> OutputProcedure
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 OutputProcedure
impl Debug for OutputProcedure
Source§impl Default for OutputProcedure
impl Default for OutputProcedure
Source§fn default() -> OutputProcedure
fn default() -> OutputProcedure
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OutputProcedure
impl<'de> Deserialize<'de> for OutputProcedure
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 OutputProcedure
impl PartialEq for OutputProcedure
Source§impl Serialize for OutputProcedure
impl Serialize for OutputProcedure
impl StructuralPartialEq for OutputProcedure
Auto Trait Implementations§
impl Freeze for OutputProcedure
impl RefUnwindSafe for OutputProcedure
impl Send for OutputProcedure
impl Sync for OutputProcedure
impl Unpin for OutputProcedure
impl UnwindSafe for OutputProcedure
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