pub struct Location {
pub node: usize,
pub port: Port,
}
Expand description
A timely dataflow location.
Fields§
§node: usize
A scope-local operator identifier.
port: Port
An operator port identifier.
Implementations§
Trait Implementations§
source§impl Columnar for Location
impl Columnar for Location
§type Ref<'a> = LocationReference<<usize as Columnar>::Ref<'a>, <Port as Columnar>::Ref<'a>>
where
usize: 'a,
Port: 'a
type Ref<'a> = LocationReference<<usize as Columnar>::Ref<'a>, <Port as Columnar>::Ref<'a>> where usize: 'a, Port: 'a
For each lifetime, a reference with that lifetime. Read more
source§fn copy_from<'a>(&mut self, other: Self::Ref<'a>)
fn copy_from<'a>(&mut self, other: Self::Ref<'a>)
Repopulates
self
from a reference. Read moresource§fn into_owned<'a>(other: Self::Ref<'a>) -> Self
fn into_owned<'a>(other: Self::Ref<'a>) -> Self
Produce an instance of
Self
from Self::Ref<'a>
.§type Container = LocationContainer<<usize as Columnar>::Container, <Port as Columnar>::Container>
type Container = LocationContainer<<usize as Columnar>::Container, <Port as Columnar>::Container>
The type that stores the columnar representation. Read more
source§fn as_columns<'a, I>(selves: I) -> Self::Containerwhere
I: IntoIterator<Item = &'a Self>,
Self: 'a,
fn as_columns<'a, I>(selves: I) -> Self::Containerwhere
I: IntoIterator<Item = &'a Self>,
Self: 'a,
Converts a sequence of the references to the type into columnar form.
source§fn into_columns<I>(selves: I) -> Self::Containerwhere
I: IntoIterator<Item = Self>,
Self: Sized,
fn into_columns<I>(selves: I) -> Self::Containerwhere
I: IntoIterator<Item = Self>,
Self: Sized,
Converts a sequence of the type into columnar form. Read more
source§impl Container<Location> for LocationContainer<<usize as Columnar>::Container, <Port as Columnar>::Container>
impl Container<Location> for LocationContainer<<usize as Columnar>::Container, <Port as Columnar>::Container>
source§impl<'de> Deserialize<'de> for Location
impl<'de> Deserialize<'de> for Location
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 Ord for Location
impl Ord for Location
source§impl<R0, R1> PartialEq<Location> for LocationReference<R0, R1>
impl<R0, R1> PartialEq<Location> for LocationReference<R0, R1>
source§impl PartialOrd for Location
impl PartialOrd for Location
source§impl<'columnar, C0, C1> Push<&'columnar Location> for LocationContainer<C0, C1>
impl<'columnar, C0, C1> Push<&'columnar Location> for LocationContainer<C0, C1>
source§impl<C0, C1> Push<Location> for LocationContainer<C0, C1>
impl<C0, C1> Push<Location> for LocationContainer<C0, C1>
impl Copy for Location
impl Eq for Location
impl StructuralPartialEq for Location
Auto Trait Implementations§
impl Freeze for Location
impl RefUnwindSafe for Location
impl Send for Location
impl Sync for Location
impl Unpin for Location
impl UnwindSafe for Location
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.