pub struct CompletableFutureLong {
pub cancelled: Option<bool>,
pub completed_exceptionally: Option<bool>,
pub done: Option<bool>,
pub number_of_dependents: Option<i32>,
}Fields§
§cancelled: Option<bool>§completed_exceptionally: Option<bool>§done: Option<bool>§number_of_dependents: Option<i32>Implementations§
source§impl CompletableFutureLong
impl CompletableFutureLong
pub fn new() -> CompletableFutureLong
Trait Implementations§
source§impl Clone for CompletableFutureLong
impl Clone for CompletableFutureLong
source§fn clone(&self) -> CompletableFutureLong
fn clone(&self) -> CompletableFutureLong
Returns a copy 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 CompletableFutureLong
impl Debug for CompletableFutureLong
source§impl Default for CompletableFutureLong
impl Default for CompletableFutureLong
source§fn default() -> CompletableFutureLong
fn default() -> CompletableFutureLong
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CompletableFutureLong
impl<'de> Deserialize<'de> for CompletableFutureLong
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 CompletableFutureLong
impl PartialEq for CompletableFutureLong
source§fn eq(&self, other: &CompletableFutureLong) -> bool
fn eq(&self, other: &CompletableFutureLong) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for CompletableFutureLong
impl Serialize for CompletableFutureLong
impl StructuralPartialEq for CompletableFutureLong
Auto Trait Implementations§
impl RefUnwindSafe for CompletableFutureLong
impl Send for CompletableFutureLong
impl Sync for CompletableFutureLong
impl Unpin for CompletableFutureLong
impl UnwindSafe for CompletableFutureLong
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