pub struct BulletinEntity {
pub bulletin: Option<BulletinDto>,
pub can_read: Option<bool>,
pub group_id: Option<String>,
pub id: Option<i64>,
pub node_address: Option<String>,
pub source_id: Option<String>,
pub timestamp: Option<String>,
pub timestamp_iso: Option<String>,
}Fields§
§bulletin: Option<BulletinDto>§can_read: Option<bool>§group_id: Option<String>§id: Option<i64>§node_address: Option<String>§source_id: Option<String>§timestamp: Option<String>§timestamp_iso: Option<String>Trait Implementations§
Source§impl Clone for BulletinEntity
impl Clone for BulletinEntity
Source§fn clone(&self) -> BulletinEntity
fn clone(&self) -> BulletinEntity
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 BulletinEntity
impl Debug for BulletinEntity
Source§impl Default for BulletinEntity
impl Default for BulletinEntity
Source§fn default() -> BulletinEntity
fn default() -> BulletinEntity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BulletinEntity
impl<'de> Deserialize<'de> for BulletinEntity
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<BulletinEntity> for BulletinEntity
impl From<BulletinEntity> for BulletinEntity
Source§fn from(v: BulletinEntity) -> Self
fn from(v: BulletinEntity) -> Self
Converts to this type from the input type.
Source§impl From<BulletinEntity> for BulletinEntity
impl From<BulletinEntity> for BulletinEntity
Source§fn from(v: BulletinEntity) -> Self
fn from(v: BulletinEntity) -> Self
Converts to this type from the input type.
Source§impl From<BulletinEntity> for BulletinEntity
impl From<BulletinEntity> for BulletinEntity
Source§fn from(v: BulletinEntity) -> Self
fn from(v: BulletinEntity) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BulletinEntity
impl RefUnwindSafe for BulletinEntity
impl Send for BulletinEntity
impl Sync for BulletinEntity
impl Unpin for BulletinEntity
impl UnsafeUnpin for BulletinEntity
impl UnwindSafe for BulletinEntity
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