pub struct TilesetExternalFile {
pub external_file_id: Dword,
pub tileset_id: Dword,
}Fields§
§external_file_id: DwordID of the external file. This ID is one entry of the the External Files Chunk.
tileset_id: DwordTileset ID in the external file
Trait Implementations§
Source§impl Clone for TilesetExternalFile
impl Clone for TilesetExternalFile
Source§fn clone(&self) -> TilesetExternalFile
fn clone(&self) -> TilesetExternalFile
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 TilesetExternalFile
impl Debug for TilesetExternalFile
impl Copy for TilesetExternalFile
Auto Trait Implementations§
impl Freeze for TilesetExternalFile
impl RefUnwindSafe for TilesetExternalFile
impl Send for TilesetExternalFile
impl Sync for TilesetExternalFile
impl Unpin for TilesetExternalFile
impl UnwindSafe for TilesetExternalFile
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more