pub struct APIInvalidTopicsError {
pub invalid_topics: Option<Vec<String>>,
pub message: Option<String>,
}Fields§
§invalid_topics: Option<Vec<String>>§message: Option<String>Trait Implementations§
Source§impl Clone for APIInvalidTopicsError
impl Clone for APIInvalidTopicsError
Source§fn clone(&self) -> APIInvalidTopicsError
fn clone(&self) -> APIInvalidTopicsError
Returns a duplicate of the value. Read more
1.0.0 · 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 APIInvalidTopicsError
impl Debug for APIInvalidTopicsError
Source§impl<'de> Deserialize<'de> for APIInvalidTopicsError
impl<'de> Deserialize<'de> for APIInvalidTopicsError
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 From<APIInvalidTopicsError> for ApiError
impl From<APIInvalidTopicsError> for ApiError
Source§fn from(value: APIInvalidTopicsError) -> Self
fn from(value: APIInvalidTopicsError) -> Self
Converts to this type from the input type.
Source§impl FromResponse for APIInvalidTopicsError
impl FromResponse for APIInvalidTopicsError
fn from_response( response: ApiResponse, has_body: bool, ) -> Result<Self, StructureError>
Source§impl PartialEq for APIInvalidTopicsError
impl PartialEq for APIInvalidTopicsError
Source§impl Serialize for APIInvalidTopicsError
impl Serialize for APIInvalidTopicsError
impl StructuralPartialEq for APIInvalidTopicsError
Auto Trait Implementations§
impl Freeze for APIInvalidTopicsError
impl RefUnwindSafe for APIInvalidTopicsError
impl Send for APIInvalidTopicsError
impl Sync for APIInvalidTopicsError
impl Unpin for APIInvalidTopicsError
impl UnwindSafe for APIInvalidTopicsError
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