pub struct GitWaypoint {
pub raw: GffStruct,
pub tag: Option<String>,
pub localized_name: Option<GffCExoLocString>,
pub description: Option<GffCExoLocString>,
pub template_resref: Option<String>,
pub linked_to: Option<String>,
pub appearance: Option<i32>,
pub transform: GitTransform,
}Expand description
Fields§
§raw: GffStructOriginal raw GFF structure.
tag: Option<String>Instance tag.
localized_name: Option<GffCExoLocString>Localized display name.
description: Option<GffCExoLocString>Description string.
template_resref: Option<String>Waypoint template resource reference.
linked_to: Option<String>Linked destination tag or waypoint.
appearance: Option<i32>Waypoint appearance id.
transform: GitTransformPlacement transform.
Trait Implementations§
Source§impl Clone for GitWaypoint
impl Clone for GitWaypoint
Source§fn clone(&self) -> GitWaypoint
fn clone(&self) -> GitWaypoint
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 GitWaypoint
impl Debug for GitWaypoint
Source§impl PartialEq for GitWaypoint
impl PartialEq for GitWaypoint
impl StructuralPartialEq for GitWaypoint
Auto Trait Implementations§
impl Freeze for GitWaypoint
impl RefUnwindSafe for GitWaypoint
impl Send for GitWaypoint
impl Sync for GitWaypoint
impl Unpin for GitWaypoint
impl UnsafeUnpin for GitWaypoint
impl UnwindSafe for GitWaypoint
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