pub struct TiledObjectCols {
pub object_id: Col<TiledObject, u64>,
pub layer_id: Col<TiledObject, u32>,
pub name: Col<TiledObject, String>,
pub obj_type: Col<TiledObject, String>,
pub x: Col<TiledObject, f32>,
pub y: Col<TiledObject, f32>,
pub width: Col<TiledObject, f32>,
pub height: Col<TiledObject, f32>,
pub rotation: Col<TiledObject, f32>,
pub visible: Col<TiledObject, bool>,
pub shape: Col<TiledObject, String>,
}Fields§
§object_id: Col<TiledObject, u64>§layer_id: Col<TiledObject, u32>§name: Col<TiledObject, String>§obj_type: Col<TiledObject, String>§x: Col<TiledObject, f32>§y: Col<TiledObject, f32>§width: Col<TiledObject, f32>§height: Col<TiledObject, f32>§rotation: Col<TiledObject, f32>§visible: Col<TiledObject, bool>§shape: Col<TiledObject, String>Auto Trait Implementations§
impl Freeze for TiledObjectCols
impl RefUnwindSafe for TiledObjectCols
impl Send for TiledObjectCols
impl Sync for TiledObjectCols
impl Unpin for TiledObjectCols
impl UnsafeUnpin for TiledObjectCols
impl UnwindSafe for TiledObjectCols
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> 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