pub trait TryIntoTimelyConfig {
// Required method
fn try_into_timely_config(self) -> Result<(TimelyConfig, Uuid), Self>
where Self: Sized;
}Expand description
A trait for specific cluster commands that can be unpacked into
CreateTimely variants.
Required Methods§
Sourcefn try_into_timely_config(self) -> Result<(TimelyConfig, Uuid), Self>where
Self: Sized,
fn try_into_timely_config(self) -> Result<(TimelyConfig, Uuid), Self>where
Self: Sized,
Attempt to unpack self into a (TimelyConfig, Uuid). Otherwise,
fail and return self back.