pub struct ServerParamsRaw {
pub commit_id: Option<String>,
pub quality: Quality,
pub code_server_args: CodeServerArgs,
pub headless: bool,
pub platform: Platform,
}
Expand description
Base server params that can be resolve()
d to a ResolvedServerParams
.
Doing so fetches additional information like a commit ID if previously
unspecified.
Fields§
§commit_id: Option<String>
§quality: Quality
§code_server_args: CodeServerArgs
§headless: bool
§platform: Platform
Implementations§
Auto Trait Implementations§
impl Freeze for ServerParamsRaw
impl RefUnwindSafe for ServerParamsRaw
impl Send for ServerParamsRaw
impl Sync for ServerParamsRaw
impl Unpin for ServerParamsRaw
impl UnwindSafe for ServerParamsRaw
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