pub enum CausalConeType {
Past,
Future,
LightCone {
velocity: f32,
},
}Expand description
Type of causal cone for queries
Variants§
Past
Past light cone (all events that could have influenced reference)
Future
Future light cone (all events that reference could influence)
LightCone
Relativistic light cone with velocity constraint
Trait Implementations§
Source§impl Clone for CausalConeType
impl Clone for CausalConeType
Source§fn clone(&self) -> CausalConeType
fn clone(&self) -> CausalConeType
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 CausalConeType
impl Debug for CausalConeType
Source§impl<'de> Deserialize<'de> for CausalConeType
impl<'de> Deserialize<'de> for CausalConeType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for CausalConeType
impl Serialize for CausalConeType
impl Copy for CausalConeType
Auto Trait Implementations§
impl Freeze for CausalConeType
impl RefUnwindSafe for CausalConeType
impl Send for CausalConeType
impl Sync for CausalConeType
impl Unpin for CausalConeType
impl UnwindSafe for CausalConeType
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