pub struct PendingEntry {
pub file_id: String,
pub src: LocationId,
pub dest: LocationId,
pub kind: TransferKind,
}Expand description
待機中Transferの表示情報。
Fields§
§file_id: String§src: LocationId§dest: LocationId§kind: TransferKindTrait Implementations§
Source§impl Clone for PendingEntry
impl Clone for PendingEntry
Source§fn clone(&self) -> PendingEntry
fn clone(&self) -> PendingEntry
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 PendingEntry
impl Debug for PendingEntry
Source§impl<'de> Deserialize<'de> for PendingEntry
impl<'de> Deserialize<'de> for PendingEntry
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 PendingEntry
impl RefUnwindSafe for PendingEntry
impl Send for PendingEntry
impl Sync for PendingEntry
impl Unpin for PendingEntry
impl UnsafeUnpin for PendingEntry
impl UnwindSafe for PendingEntry
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