#[non_exhaustive]pub struct ActivityEventable {Show 26 fields
pub id: String,
pub number: Option<i32>,
pub title: Option<String>,
pub status: Option<String>,
pub description: Option<String>,
pub description_html: Option<String>,
pub image_url: Option<String>,
pub has_attachments: Option<bool>,
pub tags: Option<Vec<String>>,
pub closed: Option<bool>,
pub postponed: Option<bool>,
pub golden: Option<bool>,
pub last_active_at: Option<DateTime>,
pub created_at: Option<DateTime>,
pub updated_at: Option<DateTime>,
pub body: Option<RichTextBody>,
pub creator: Option<User>,
pub card: Option<CardRef>,
pub board: Option<Board>,
pub column: Option<Column>,
pub assignees: Option<Vec<User>>,
pub has_more_assignees: Option<bool>,
pub comments_url: Option<String>,
pub reactions_url: Option<String>,
pub steps: Option<Vec<Step>>,
pub url: String,
}Expand description
ActivityEventable, as Fizzy sends it. Read-only, so a field added later is not a breaking change.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: Stringid.
number: Option<i32>number.
title: Option<String>title.
status: Option<String>status.
description: Option<String>description.
description_html: Option<String>description_html.
image_url: Option<String>image_url.
has_attachments: Option<bool>has_attachments.
tags.
closed: Option<bool>closed.
postponed: Option<bool>postponed.
golden: Option<bool>golden.
last_active_at: Option<DateTime>last_active_at.
created_at: Option<DateTime>created_at.
updated_at: Option<DateTime>updated_at.
body: Option<RichTextBody>body.
creator: Option<User>creator.
card: Option<CardRef>card.
board: Option<Board>board.
column: Option<Column>column.
assignees: Option<Vec<User>>assignees.
has_more_assignees: Option<bool>has_more_assignees.
comments_url: Option<String>comments_url.
reactions_url: Option<String>reactions_url.
steps: Option<Vec<Step>>steps.
url: Stringurl.
Trait Implementations§
Source§impl Clone for ActivityEventable
impl Clone for ActivityEventable
Source§fn clone(&self) -> ActivityEventable
fn clone(&self) -> ActivityEventable
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 ActivityEventable
impl Debug for ActivityEventable
Source§impl Default for ActivityEventable
impl Default for ActivityEventable
Source§fn default() -> ActivityEventable
fn default() -> ActivityEventable
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActivityEventable
impl<'de> Deserialize<'de> for ActivityEventable
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 ActivityEventable
impl PartialEq for ActivityEventable
Source§impl Serialize for ActivityEventable
impl Serialize for ActivityEventable
impl StructuralPartialEq for ActivityEventable
Auto Trait Implementations§
impl Freeze for ActivityEventable
impl RefUnwindSafe for ActivityEventable
impl Send for ActivityEventable
impl Sync for ActivityEventable
impl Unpin for ActivityEventable
impl UnsafeUnpin for ActivityEventable
impl UnwindSafe for ActivityEventable
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