pub struct WorkFlowRec {
pub id: i64,
pub node_id: String,
pub name: String,
pub path: String,
pub state: String,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub url: Url,
pub html_url: Url,
pub badge_url: Url,
pub sdc_repository: String,
}
Fields§
§id: i64
§node_id: String
§name: String
§path: String
§state: String
§created_at: DateTime<Utc>
§updated_at: DateTime<Utc>
§url: Url
§html_url: Url
§badge_url: Url
§sdc_repository: String
Trait Implementations§
Source§impl Debug for WorkFlowRec
impl Debug for WorkFlowRec
Source§impl From<WorkFlow> for WorkFlowRec
impl From<WorkFlow> for WorkFlowRec
Source§impl RepositryAware for WorkFlowRec
impl RepositryAware for WorkFlowRec
fn set_repository(&mut self, name: String)
Auto Trait Implementations§
impl Freeze for WorkFlowRec
impl RefUnwindSafe for WorkFlowRec
impl Send for WorkFlowRec
impl Sync for WorkFlowRec
impl Unpin for WorkFlowRec
impl UnwindSafe for WorkFlowRec
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