pub struct ListWorkspaceFileHistoryResponse {
pub path: String,
pub versions: Vec<WorkspaceFileVersion>,
pub total: i64,
}Expand description
ListWorkspaceFileHistoryResponse model.
Fields§
§path: StringThe path as sent, not normalised.
versions: Vec<WorkspaceFileVersion>§total: i64Trait Implementations§
Source§impl Clone for ListWorkspaceFileHistoryResponse
impl Clone for ListWorkspaceFileHistoryResponse
Source§fn clone(&self) -> ListWorkspaceFileHistoryResponse
fn clone(&self) -> ListWorkspaceFileHistoryResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for ListWorkspaceFileHistoryResponse
impl Default for ListWorkspaceFileHistoryResponse
Source§fn default() -> ListWorkspaceFileHistoryResponse
fn default() -> ListWorkspaceFileHistoryResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListWorkspaceFileHistoryResponse
impl<'de> Deserialize<'de> for ListWorkspaceFileHistoryResponse
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
impl StructuralPartialEq for ListWorkspaceFileHistoryResponse
Auto Trait Implementations§
impl Freeze for ListWorkspaceFileHistoryResponse
impl RefUnwindSafe for ListWorkspaceFileHistoryResponse
impl Send for ListWorkspaceFileHistoryResponse
impl Sync for ListWorkspaceFileHistoryResponse
impl Unpin for ListWorkspaceFileHistoryResponse
impl UnsafeUnpin for ListWorkspaceFileHistoryResponse
impl UnwindSafe for ListWorkspaceFileHistoryResponse
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