pub struct BriefPowerPanel {
pub id: Option<i32>,
pub url: Option<String>,
pub display: Option<String>,
pub name: String,
pub description: Option<String>,
pub powerfeed_count: Option<i64>,
}Expand description
BriefPowerPanel : Adds support for custom fields and tags.
Fields§
§id: Option<i32>§url: Option<String>§display: Option<String>§name: String§description: Option<String>§powerfeed_count: Option<i64>Implementations§
Source§impl BriefPowerPanel
impl BriefPowerPanel
Sourcepub fn new(name: String) -> BriefPowerPanel
pub fn new(name: String) -> BriefPowerPanel
Adds support for custom fields and tags.
Trait Implementations§
Source§impl Clone for BriefPowerPanel
impl Clone for BriefPowerPanel
Source§fn clone(&self) -> BriefPowerPanel
fn clone(&self) -> BriefPowerPanel
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 BriefPowerPanel
impl Debug for BriefPowerPanel
Source§impl Default for BriefPowerPanel
impl Default for BriefPowerPanel
Source§fn default() -> BriefPowerPanel
fn default() -> BriefPowerPanel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BriefPowerPanel
impl<'de> Deserialize<'de> for BriefPowerPanel
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 BriefPowerPanel
impl PartialEq for BriefPowerPanel
Source§impl Serialize for BriefPowerPanel
impl Serialize for BriefPowerPanel
impl StructuralPartialEq for BriefPowerPanel
Auto Trait Implementations§
impl Freeze for BriefPowerPanel
impl RefUnwindSafe for BriefPowerPanel
impl Send for BriefPowerPanel
impl Sync for BriefPowerPanel
impl Unpin for BriefPowerPanel
impl UnwindSafe for BriefPowerPanel
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