pub trait LocalToDistributed {
type Distributed;
// Required method
fn to_distributed(&self) -> Self::Distributed;
}Expand description
Converts local types to their distributed equivalents.
Required Associated Types§
Sourcetype Distributed
type Distributed
The distributed equivalent type.
Required Methods§
Sourcefn to_distributed(&self) -> Self::Distributed
fn to_distributed(&self) -> Self::Distributed
Converts to the distributed equivalent.