pub struct Workstream {
pub id: WorkstreamId,
pub project_id: ProjectId,
pub name: String,
pub branch: String,
pub state: WorkstreamState,
pub created_at: DateTime<Utc>,
pub from_pr: Option<String>,
}Fields§
§id: WorkstreamId§project_id: ProjectId§name: String§branch: String§state: WorkstreamState§created_at: DateTime<Utc>§from_pr: Option<String>Trait Implementations§
Source§impl Clone for Workstream
impl Clone for Workstream
Source§fn clone(&self) -> Workstream
fn clone(&self) -> Workstream
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 Workstream
impl Debug for Workstream
Source§impl<'de> Deserialize<'de> for Workstream
impl<'de> Deserialize<'de> for Workstream
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 Workstream
impl RefUnwindSafe for Workstream
impl Send for Workstream
impl Sync for Workstream
impl Unpin for Workstream
impl UnsafeUnpin for Workstream
impl UnwindSafe for Workstream
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