pub struct PartialEntityUID {
pub ty: EntityType,
pub eid: Option<Eid>,
}Available on crate feature
tpe only.Expand description
Partial EntityUID
Fields§
§ty: EntityTypeTypename of the entity
eid: Option<Eid>Optional EID of the entity
Trait Implementations§
Source§impl Clone for PartialEntityUID
impl Clone for PartialEntityUID
Source§fn clone(&self) -> PartialEntityUID
fn clone(&self) -> PartialEntityUID
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 PartialEntityUID
impl Debug for PartialEntityUID
Source§impl From<EntityUID> for PartialEntityUID
impl From<EntityUID> for PartialEntityUID
Auto Trait Implementations§
impl Freeze for PartialEntityUID
impl RefUnwindSafe for PartialEntityUID
impl Send for PartialEntityUID
impl Sync for PartialEntityUID
impl Unpin for PartialEntityUID
impl UnsafeUnpin for PartialEntityUID
impl UnwindSafe for PartialEntityUID
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