pub struct CloudSaveListData {
pub request_id: i64,
pub error: Option<(i64, String)>,
pub saves: Vec<CloudSaveInfo>,
}Expand description
Cloud save list response
Fields§
§request_id: i64§error: Option<(i64, String)>§saves: Vec<CloudSaveInfo>Trait Implementations§
Source§impl Clone for CloudSaveListData
impl Clone for CloudSaveListData
Source§fn clone(&self) -> CloudSaveListData
fn clone(&self) -> CloudSaveListData
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 moreAuto Trait Implementations§
impl Freeze for CloudSaveListData
impl RefUnwindSafe for CloudSaveListData
impl Send for CloudSaveListData
impl Sync for CloudSaveListData
impl Unpin for CloudSaveListData
impl UnwindSafe for CloudSaveListData
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