pub struct ContractLockInfo {
pub id: i64,
pub client_id: String,
pub client_name: String,
pub script_name: String,
pub channel: String,
pub bound_version_id: Option<i64>,
pub lifetime: String,
pub drifted: bool,
pub created_by: Option<String>,
pub created_at: String,
pub input_schema: String,
}Fields§
§id: i64§client_id: String§client_name: String§script_name: String§channel: String§bound_version_id: Option<i64>§lifetime: String§drifted: bool§created_by: Option<String>§created_at: String§input_schema: StringTrait Implementations§
Source§impl Clone for ContractLockInfo
impl Clone for ContractLockInfo
Source§fn clone(&self) -> ContractLockInfo
fn clone(&self) -> ContractLockInfo
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 ContractLockInfo
impl Debug for ContractLockInfo
Source§impl<'de> Deserialize<'de> for ContractLockInfo
impl<'de> Deserialize<'de> for ContractLockInfo
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 ContractLockInfo
impl RefUnwindSafe for ContractLockInfo
impl Send for ContractLockInfo
impl Sync for ContractLockInfo
impl Unpin for ContractLockInfo
impl UnsafeUnpin for ContractLockInfo
impl UnwindSafe for ContractLockInfo
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