pub struct Automation {
pub amount: Option<u64>,
pub authority: Option<String>,
pub balance: Option<u64>,
pub executor: Option<String>,
pub fee: Option<u64>,
pub strategy: Option<u64>,
pub mask: Option<u64>,
pub reload: Option<u64>,
}Fields§
§amount: Option<u64>§balance: Option<u64>§executor: Option<String>§fee: Option<u64>§strategy: Option<u64>§mask: Option<u64>§reload: Option<u64>Trait Implementations§
Source§impl Clone for Automation
impl Clone for Automation
Source§fn clone(&self) -> Automation
fn clone(&self) -> Automation
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 Automation
impl Debug for Automation
Source§impl Default for Automation
impl Default for Automation
Source§fn default() -> Automation
fn default() -> Automation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Automation
impl<'de> Deserialize<'de> for Automation
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 Automation
impl RefUnwindSafe for Automation
impl Send for Automation
impl Sync for Automation
impl Unpin for Automation
impl UnsafeUnpin for Automation
impl UnwindSafe for Automation
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