pub struct AdvMapStatic {
pub pos: Option<Pos>,
pub rot: f32,
pub floor: u16,
pub name: String,
pub combat_script: String,
pub point_lights: String,
pub shared: FileRef,
pub is_removable: bool,
pub terrain_aligned: bool,
pub scale_percent: u16,
}Fields§
§pos: Option<Pos>§rot: f32§floor: u16§name: String§combat_script: String§point_lights: String§is_removable: bool§terrain_aligned: bool§scale_percent: u16Trait Implementations§
Source§impl Clone for AdvMapStatic
impl Clone for AdvMapStatic
Source§fn clone(&self) -> AdvMapStatic
fn clone(&self) -> AdvMapStatic
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 AdvMapStatic
impl Debug for AdvMapStatic
Source§impl<'de> Deserialize<'de> for AdvMapStatic
impl<'de> Deserialize<'de> for AdvMapStatic
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 AdvMapStatic
impl RefUnwindSafe for AdvMapStatic
impl Send for AdvMapStatic
impl Sync for AdvMapStatic
impl Unpin for AdvMapStatic
impl UnsafeUnpin for AdvMapStatic
impl UnwindSafe for AdvMapStatic
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