pub struct UpdateStreamTopicsResponse {
pub all_topics: Option<Vec<String>>,
pub topics_added: Option<Vec<String>>,
pub topics_removed: Option<Vec<String>>,
}Fields§
§all_topics: Option<Vec<String>>§topics_added: Option<Vec<String>>§topics_removed: Option<Vec<String>>Implementations§
Source§impl UpdateStreamTopicsResponse
impl UpdateStreamTopicsResponse
pub fn new() -> UpdateStreamTopicsResponse
Trait Implementations§
Source§impl Clone for UpdateStreamTopicsResponse
impl Clone for UpdateStreamTopicsResponse
Source§fn clone(&self) -> UpdateStreamTopicsResponse
fn clone(&self) -> UpdateStreamTopicsResponse
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 UpdateStreamTopicsResponse
impl Debug for UpdateStreamTopicsResponse
Source§impl Default for UpdateStreamTopicsResponse
impl Default for UpdateStreamTopicsResponse
Source§fn default() -> UpdateStreamTopicsResponse
fn default() -> UpdateStreamTopicsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateStreamTopicsResponse
impl<'de> Deserialize<'de> for UpdateStreamTopicsResponse
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
Source§impl PartialEq for UpdateStreamTopicsResponse
impl PartialEq for UpdateStreamTopicsResponse
Source§fn eq(&self, other: &UpdateStreamTopicsResponse) -> bool
fn eq(&self, other: &UpdateStreamTopicsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateStreamTopicsResponse
Auto Trait Implementations§
impl Freeze for UpdateStreamTopicsResponse
impl RefUnwindSafe for UpdateStreamTopicsResponse
impl Send for UpdateStreamTopicsResponse
impl Sync for UpdateStreamTopicsResponse
impl Unpin for UpdateStreamTopicsResponse
impl UnsafeUnpin for UpdateStreamTopicsResponse
impl UnwindSafe for UpdateStreamTopicsResponse
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