pub struct FuturesSweep {
pub id: Option<String>,
pub requested_amount: Option<String>,
pub should_sweep_all: Option<bool>,
pub status: Option<String>,
pub scheduled_time: Option<String>,
}Expand description
A futures sweep.
Fields§
§id: Option<String>Sweep ID.
requested_amount: Option<String>Requested amount.
should_sweep_all: Option<bool>Should sweep all.
status: Option<String>Status.
scheduled_time: Option<String>Scheduled time.
Trait Implementations§
Source§impl Clone for FuturesSweep
impl Clone for FuturesSweep
Source§fn clone(&self) -> FuturesSweep
fn clone(&self) -> FuturesSweep
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 FuturesSweep
impl Debug for FuturesSweep
Source§impl<'de> Deserialize<'de> for FuturesSweep
impl<'de> Deserialize<'de> for FuturesSweep
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 FuturesSweep
impl RefUnwindSafe for FuturesSweep
impl Send for FuturesSweep
impl Sync for FuturesSweep
impl Unpin for FuturesSweep
impl UnwindSafe for FuturesSweep
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