pub struct DtoForks {
pub path: Option<String>,
pub created_at: Option<String>,
pub freeze: Option<bool>,
pub username: Option<String>,
pub user_freeze: Option<bool>,
pub fork_count: Option<i64>,
pub nickname: Option<String>,
pub user_lock: Option<bool>,
}
Expand description
DtoForks 模型
Fields§
§path: Option<String>
§created_at: Option<String>
§freeze: Option<bool>
§username: Option<String>
§user_freeze: Option<bool>
§fork_count: Option<i64>
§nickname: Option<String>
§user_lock: Option<bool>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DtoForks
impl<'de> Deserialize<'de> for DtoForks
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 DtoForks
impl RefUnwindSafe for DtoForks
impl Send for DtoForks
impl Sync for DtoForks
impl Unpin for DtoForks
impl UnwindSafe for DtoForks
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