Enum nalgebra_spacetime::LightCone
source · pub enum LightCone {
TimelikeFuture,
LightlikeFuture,
Origin,
LightlikePast,
TimelikePast,
Spacelike,
}
Expand description
Spacetime regions regarding an event’s light cone.
Variants§
TimelikeFuture
Interior events of the future-directed light cone.
LightlikeFuture
Events on the future-directed light cone itself.
Origin
Trivial zero-vector difference of two coinciding events.
LightlikePast
Events on the past-directed light cone itself.
TimelikePast
Interior events of the past-directed light cone.
Spacelike
Events elsewhere.
Trait Implementations§
source§impl PartialEq for LightCone
impl PartialEq for LightCone
impl Copy for LightCone
impl Eq for LightCone
impl StructuralEq for LightCone
impl StructuralPartialEq for LightCone
Auto Trait Implementations§
impl RefUnwindSafe for LightCone
impl Send for LightCone
impl Sync for LightCone
impl Unpin for LightCone
impl UnwindSafe for LightCone
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<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moresource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.