Trait mz_cluster_client::client::TryIntoTimelyConfig
source · pub trait TryIntoTimelyConfig {
// Required method
fn try_into_timely_config(
self,
) -> Result<(TimelyConfig, ClusterStartupEpoch), 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, ClusterStartupEpoch), Self>where
Self: Sized,
fn try_into_timely_config(
self,
) -> Result<(TimelyConfig, ClusterStartupEpoch), Self>where
Self: Sized,
Attempt to unpack self
into a (TimelyConfig, ClusterStartupEpoch)
. Otherwise,
fail and return self
back.