pub struct Fork {
pub fid: i32,
pub name: String,
pub parent_fid: i32,
pub parent_name: String,
pub snapshot_ts: i64,
pub created_by: Option<String>,
pub created_at: i64,
pub children_count: i32,
pub inactive: Option<bool>,
pub inactive_at: Option<i64>,
pub status: String,
pub size: i64,
}Fields§
§fid: i32§name: String§parent_fid: i32§parent_name: String§snapshot_ts: i64§created_by: Option<String>§created_at: i64§children_count: i32§inactive: Option<bool>§inactive_at: Option<i64>§status: String§size: i64Trait Implementations§
Source§impl<'de> Deserialize<'de> for Fork
impl<'de> Deserialize<'de> for Fork
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 Fork
impl RefUnwindSafe for Fork
impl Send for Fork
impl Sync for Fork
impl Unpin for Fork
impl UnsafeUnpin for Fork
impl UnwindSafe for Fork
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