pub struct LoadSnapshotParams {
pub tiles: Vec<PictureTile>,
}Expand description
Returns the snapshot identifier. loadSnapshot
Fields§
§tiles: Vec<PictureTile>An array of tiles composing the snapshot.
Implementations§
Source§impl LoadSnapshotParams
impl LoadSnapshotParams
pub fn new(tiles: Vec<PictureTile>) -> Self
Trait Implementations§
Source§impl Clone for LoadSnapshotParams
impl Clone for LoadSnapshotParams
Source§fn clone(&self) -> LoadSnapshotParams
fn clone(&self) -> LoadSnapshotParams
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 LoadSnapshotParams
impl Debug for LoadSnapshotParams
Source§impl<'de> Deserialize<'de> for LoadSnapshotParams
impl<'de> Deserialize<'de> for LoadSnapshotParams
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 LoadSnapshotParams
impl PartialEq for LoadSnapshotParams
Source§impl Serialize for LoadSnapshotParams
impl Serialize for LoadSnapshotParams
impl StructuralPartialEq for LoadSnapshotParams
Auto Trait Implementations§
impl Freeze for LoadSnapshotParams
impl RefUnwindSafe for LoadSnapshotParams
impl Send for LoadSnapshotParams
impl Sync for LoadSnapshotParams
impl Unpin for LoadSnapshotParams
impl UnsafeUnpin for LoadSnapshotParams
impl UnwindSafe for LoadSnapshotParams
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