pub struct CodespacesUpdateForAuthenticatedUserRequest {
pub machine: Option<String>,
pub display_name: Option<String>,
pub recent_folders: Option<Vec<String>>,
}
Fields§
§machine: Option<String>
A valid machine to transition this codespace to.
display_name: Option<String>
Display name for this codespace
recent_folders: Option<Vec<String>>
Recently opened folders inside the codespace. It is currently used by the clients to determine the folder path to load the codespace in.
Implementations§
Trait Implementations§
Source§impl Clone for CodespacesUpdateForAuthenticatedUserRequest
impl Clone for CodespacesUpdateForAuthenticatedUserRequest
Source§fn clone(&self) -> CodespacesUpdateForAuthenticatedUserRequest
fn clone(&self) -> CodespacesUpdateForAuthenticatedUserRequest
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 Default for CodespacesUpdateForAuthenticatedUserRequest
impl Default for CodespacesUpdateForAuthenticatedUserRequest
Source§fn default() -> CodespacesUpdateForAuthenticatedUserRequest
fn default() -> CodespacesUpdateForAuthenticatedUserRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CodespacesUpdateForAuthenticatedUserRequest
impl<'de> Deserialize<'de> for CodespacesUpdateForAuthenticatedUserRequest
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 CodespacesUpdateForAuthenticatedUserRequest
impl PartialEq for CodespacesUpdateForAuthenticatedUserRequest
Source§fn eq(&self, other: &CodespacesUpdateForAuthenticatedUserRequest) -> bool
fn eq(&self, other: &CodespacesUpdateForAuthenticatedUserRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CodespacesUpdateForAuthenticatedUserRequest
Auto Trait Implementations§
impl Freeze for CodespacesUpdateForAuthenticatedUserRequest
impl RefUnwindSafe for CodespacesUpdateForAuthenticatedUserRequest
impl Send for CodespacesUpdateForAuthenticatedUserRequest
impl Sync for CodespacesUpdateForAuthenticatedUserRequest
impl Unpin for CodespacesUpdateForAuthenticatedUserRequest
impl UnwindSafe for CodespacesUpdateForAuthenticatedUserRequest
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