pub struct SnsNeuronTopicFolloweesRow {
pub topic_code: i32,
pub topic: Option<String>,
pub followees: Vec<SnsNeuronFolloweeRow>,
}Expand description
SnsNeuronTopicFolloweesRow
Native topic-following entry retained from one SNS neuron.
Fields§
§topic_code: i32Raw topic code used as the native topic-following map key.
topic: Option<String>Current native topic label when Governance supplied a known topic variant.
followees: Vec<SnsNeuronFolloweeRow>Native topic followees in response order.
Trait Implementations§
Source§impl Clone for SnsNeuronTopicFolloweesRow
impl Clone for SnsNeuronTopicFolloweesRow
Source§fn clone(&self) -> SnsNeuronTopicFolloweesRow
fn clone(&self) -> SnsNeuronTopicFolloweesRow
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 SnsNeuronTopicFolloweesRow
impl Debug for SnsNeuronTopicFolloweesRow
Source§impl<'de> Deserialize<'de> for SnsNeuronTopicFolloweesRow
impl<'de> Deserialize<'de> for SnsNeuronTopicFolloweesRow
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 SnsNeuronTopicFolloweesRow
impl StructuralPartialEq for SnsNeuronTopicFolloweesRow
Auto Trait Implementations§
impl Freeze for SnsNeuronTopicFolloweesRow
impl RefUnwindSafe for SnsNeuronTopicFolloweesRow
impl Send for SnsNeuronTopicFolloweesRow
impl Sync for SnsNeuronTopicFolloweesRow
impl Unpin for SnsNeuronTopicFolloweesRow
impl UnsafeUnpin for SnsNeuronTopicFolloweesRow
impl UnwindSafe for SnsNeuronTopicFolloweesRow
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