pub struct AOCAttachTo {
pub parent_id: s16,
pub bone: String,
pub position: v3f,
pub rotation: v3f,
pub force_visible: bool,
}
Fields§
§parent_id: s16
§bone: String
§position: v3f
§rotation: v3f
§force_visible: bool
Trait Implementations§
Source§impl Clone for AOCAttachTo
impl Clone for AOCAttachTo
Source§fn clone(&self) -> AOCAttachTo
fn clone(&self) -> AOCAttachTo
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AOCAttachTo
impl Debug for AOCAttachTo
Source§impl Deserialize for AOCAttachTo
impl Deserialize for AOCAttachTo
Source§type Output = AOCAttachTo
type Output = AOCAttachTo
Output should be Self, except for wrapper types.
fn deserialize(deser: &mut Deserializer<'_>) -> DeserializeResult<Self>
Source§impl PartialEq for AOCAttachTo
impl PartialEq for AOCAttachTo
Source§impl Serialize for AOCAttachTo
impl Serialize for AOCAttachTo
type Input = AOCAttachTo
fn serialize<S: Serializer>(value: &Self::Input, ser: &mut S) -> SerializeResult
impl StructuralPartialEq for AOCAttachTo
Auto Trait Implementations§
impl Freeze for AOCAttachTo
impl RefUnwindSafe for AOCAttachTo
impl Send for AOCAttachTo
impl Sync for AOCAttachTo
impl Unpin for AOCAttachTo
impl UnwindSafe for AOCAttachTo
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