pub struct CodespaceExportDetails {
pub state: Option<Option<String>>,
pub completed_at: Option<Option<String>>,
pub branch: Option<Option<String>>,
pub sha: Option<Option<String>>,
pub id: Option<String>,
pub export_url: Option<String>,
pub html_url: Option<Option<String>>,
}
Expand description
CodespaceExportDetails : An export of a codespace. Also, latest export details for a codespace can be fetched with id = latest
Fields§
§state: Option<Option<String>>
State of the latest export
completed_at: Option<Option<String>>
Completion time of the last export operation
branch: Option<Option<String>>
Name of the exported branch
sha: Option<Option<String>>
Git commit SHA of the exported branch
id: Option<String>
Id for the export details
export_url: Option<String>
Url for fetching export details
html_url: Option<Option<String>>
Web url for the exported branch
Implementations§
Source§impl CodespaceExportDetails
impl CodespaceExportDetails
Sourcepub fn new() -> CodespaceExportDetails
pub fn new() -> CodespaceExportDetails
An export of a codespace. Also, latest export details for a codespace can be fetched with id = latest
Trait Implementations§
Source§impl Clone for CodespaceExportDetails
impl Clone for CodespaceExportDetails
Source§fn clone(&self) -> CodespaceExportDetails
fn clone(&self) -> CodespaceExportDetails
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 CodespaceExportDetails
impl Debug for CodespaceExportDetails
Source§impl Default for CodespaceExportDetails
impl Default for CodespaceExportDetails
Source§fn default() -> CodespaceExportDetails
fn default() -> CodespaceExportDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CodespaceExportDetails
impl<'de> Deserialize<'de> for CodespaceExportDetails
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
Source§impl PartialEq for CodespaceExportDetails
impl PartialEq for CodespaceExportDetails
Source§impl Serialize for CodespaceExportDetails
impl Serialize for CodespaceExportDetails
impl StructuralPartialEq for CodespaceExportDetails
Auto Trait Implementations§
impl Freeze for CodespaceExportDetails
impl RefUnwindSafe for CodespaceExportDetails
impl Send for CodespaceExportDetails
impl Sync for CodespaceExportDetails
impl Unpin for CodespaceExportDetails
impl UnwindSafe for CodespaceExportDetails
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