[−][src]Enum flv_api_sc::topic::FlvTopicSpecMetadata
Variants
Assigned(PartitionMaps)Computed(TopicReplicaParam)Implementations
impl TopicSpec[src]
pub fn new_assigned<J>(partition_map: J) -> TopicSpec where
J: Into<PartitionMaps>, [src]
J: Into<PartitionMaps>,
pub fn new_computed(
partitions: i32,
replication: i32,
ignore_rack: Option<bool>
) -> TopicSpec[src]
partitions: i32,
replication: i32,
ignore_rack: Option<bool>
) -> TopicSpec
pub fn is_computed(&self) -> bool[src]
pub fn partitions(&self) -> Option<i32>[src]
pub fn replication_factor(&self) -> Option<i32>[src]
pub fn ignore_rack_assignment(&self) -> bool[src]
pub fn type_label(is_computed: &bool) -> &'static str[src]
pub fn partitions_str(partition_cnt: &Option<i32>) -> String[src]
pub fn replication_factor_str(replication_cnt: &Option<i32>) -> String[src]
pub fn ignore_rack_assign_str(ignore_rack_assign: &bool) -> &'static str[src]
pub fn partition_map_str(&self) -> Option<String>[src]
pub fn valid_partition(partitions: &i32) -> Result<(), Error>[src]
Validate partitions
pub fn valid_replication_factor(replication: &i32) -> Result<(), Error>[src]
Validate replication factor
Trait Implementations
impl Clone for TopicSpec[src]
impl Debug for TopicSpec[src]
impl Decoder for TopicSpec[src]
fn decode<T>(&mut self, src: &mut T, version: i16) -> Result<(), Error> where
T: Buf, [src]
T: Buf,
fn decode_from<T>(src: &mut T, version: i16) -> Result<Self, Error> where
Self: Default,
T: Buf,
Self: Default,
T: Buf,
impl Default for TopicSpec[src]
impl Encoder for TopicSpec[src]
fn write_size(&self, version: i16) -> usize[src]
fn encode<T>(&self, dest: &mut T, version: i16) -> Result<(), Error> where
T: BufMut, [src]
T: BufMut,
fn as_bytes(&self, version: i16) -> Result<Bytes, Error>
impl From<(i32, i32, bool)> for TopicSpec[src]
impl From<(i32, i32)> for TopicSpec[src]
convert from tuple with partition and replication with rack off
impl PartialEq<TopicSpec> for TopicSpec[src]
impl StructuralPartialEq for TopicSpec[src]
Auto Trait Implementations
impl RefUnwindSafe for TopicSpec
impl Send for TopicSpec
impl Sync for TopicSpec
impl Unpin for TopicSpec
impl UnwindSafe for TopicSpec
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,