pub struct BundleRow {
pub event_id: String,
pub bundle_id: String,
pub status: String,
pub risk_level: String,
pub total_added: i64,
pub total_deleted: i64,
pub files_changed: i64,
pub tests_passed: i64,
pub tests_failed: i64,
pub suggested_action: String,
pub branch: String,
pub created_at: String,
}Expand description
A review bundle row.
Fields§
§event_id: String§bundle_id: String§status: String§risk_level: String§total_added: i64§total_deleted: i64§files_changed: i64§tests_passed: i64§tests_failed: i64§suggested_action: String§branch: String§created_at: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for BundleRow
impl RefUnwindSafe for BundleRow
impl Send for BundleRow
impl Sync for BundleRow
impl Unpin for BundleRow
impl UnsafeUnpin for BundleRow
impl UnwindSafe for BundleRow
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