Skip to main content

LocalToDistributed

Trait LocalToDistributed 

Source
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§

Source

type Distributed

The distributed equivalent type.

Required Methods§

Source

fn to_distributed(&self) -> Self::Distributed

Converts to the distributed equivalent.

Implementors§