pub struct AdminTopicSummary {
pub topic_name: String,
pub keyed_by: Option<String>,
pub schema_json: Value,
}Expand description
Topic catalog entry from the compile-time TopicRegistry.
Fields§
§topic_name: StringStable topic name (e.g. user.notifications).
keyed_by: Option<String>JSON payload field used as partition key, when keyed.
schema_json: ValueParsed topic schema JSON.
Trait Implementations§
Source§impl Clone for AdminTopicSummary
impl Clone for AdminTopicSummary
Source§fn clone(&self) -> AdminTopicSummary
fn clone(&self) -> AdminTopicSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AdminTopicSummary
impl Debug for AdminTopicSummary
Source§impl<'de> Deserialize<'de> for AdminTopicSummary
impl<'de> Deserialize<'de> for AdminTopicSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for AdminTopicSummary
Source§impl PartialEq for AdminTopicSummary
impl PartialEq for AdminTopicSummary
Source§impl Serialize for AdminTopicSummary
impl Serialize for AdminTopicSummary
impl StructuralPartialEq for AdminTopicSummary
Auto Trait Implementations§
impl Freeze for AdminTopicSummary
impl RefUnwindSafe for AdminTopicSummary
impl Send for AdminTopicSummary
impl Sync for AdminTopicSummary
impl Unpin for AdminTopicSummary
impl UnsafeUnpin for AdminTopicSummary
impl UnwindSafe for AdminTopicSummary
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more