pub struct TaskGithubEvent {
pub id: String,
pub action: String,
pub target: String,
pub number: u64,
pub summary: String,
pub url: Option<String>,
pub recorded_at: DateTime<Utc>,
}Expand description
GitHub write/read evidence attached to a task timeline.
Fields§
§id: String§action: String§target: String§number: u64§summary: String§url: Option<String>§recorded_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for TaskGithubEvent
impl Clone for TaskGithubEvent
Source§fn clone(&self) -> TaskGithubEvent
fn clone(&self) -> TaskGithubEvent
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 TaskGithubEvent
impl Debug for TaskGithubEvent
Source§impl<'de> Deserialize<'de> for TaskGithubEvent
impl<'de> Deserialize<'de> for TaskGithubEvent
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
Auto Trait Implementations§
impl Freeze for TaskGithubEvent
impl RefUnwindSafe for TaskGithubEvent
impl Send for TaskGithubEvent
impl Sync for TaskGithubEvent
impl Unpin for TaskGithubEvent
impl UnsafeUnpin for TaskGithubEvent
impl UnwindSafe for TaskGithubEvent
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