pub struct TopicResponse {
pub created: Option<String>,
pub id: Option<i64>,
pub repo_count: Option<i64>,
pub topic_name: Option<String>,
pub updated: Option<String>,
}
Expand description
TopicResponse : TopicResponse for returning topics
Fields§
§created: Option<String>
§id: Option<i64>
§repo_count: Option<i64>
§topic_name: Option<String>
§updated: Option<String>
Implementations§
Source§impl TopicResponse
impl TopicResponse
Sourcepub fn new() -> TopicResponse
pub fn new() -> TopicResponse
TopicResponse for returning topics
Trait Implementations§
Source§impl Clone for TopicResponse
impl Clone for TopicResponse
Source§fn clone(&self) -> TopicResponse
fn clone(&self) -> TopicResponse
Returns a copy 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 TopicResponse
impl Debug for TopicResponse
Source§impl Default for TopicResponse
impl Default for TopicResponse
Source§fn default() -> TopicResponse
fn default() -> TopicResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TopicResponse
impl<'de> Deserialize<'de> for TopicResponse
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 TopicResponse
impl PartialEq for TopicResponse
Source§impl Serialize for TopicResponse
impl Serialize for TopicResponse
impl StructuralPartialEq for TopicResponse
Auto Trait Implementations§
impl Freeze for TopicResponse
impl RefUnwindSafe for TopicResponse
impl Send for TopicResponse
impl Sync for TopicResponse
impl Unpin for TopicResponse
impl UnwindSafe for TopicResponse
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