pub struct DtoWorkspaceListResult {
pub list: Option<Vec<Value>>,
pub has_more: Option<bool>,
pub total: Option<i64>,
pub page_info: Option<Value>,
}
Expand description
DtoWorkspaceListResult 模型
Fields§
§list: Option<Vec<Value>>
§has_more: Option<bool>
§total: Option<i64>
§page_info: Option<Value>
Trait Implementations§
Source§impl Clone for DtoWorkspaceListResult
impl Clone for DtoWorkspaceListResult
Source§fn clone(&self) -> DtoWorkspaceListResult
fn clone(&self) -> DtoWorkspaceListResult
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 DtoWorkspaceListResult
impl Debug for DtoWorkspaceListResult
Source§impl<'de> Deserialize<'de> for DtoWorkspaceListResult
impl<'de> Deserialize<'de> for DtoWorkspaceListResult
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 DtoWorkspaceListResult
impl RefUnwindSafe for DtoWorkspaceListResult
impl Send for DtoWorkspaceListResult
impl Sync for DtoWorkspaceListResult
impl Unpin for DtoWorkspaceListResult
impl UnwindSafe for DtoWorkspaceListResult
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