pub struct JvmConfig {
pub gc: String,
pub extra_flags: String,
pub xmx: Option<String>,
pub xms: Option<String>,
pub jdk_path: Option<String>,
}Fields§
§gc: String§extra_flags: String§xmx: Option<String>§xms: Option<String>§jdk_path: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for JvmConfig
impl<'de> Deserialize<'de> for JvmConfig
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 JvmConfig
impl RefUnwindSafe for JvmConfig
impl Send for JvmConfig
impl Sync for JvmConfig
impl Unpin for JvmConfig
impl UnsafeUnpin for JvmConfig
impl UnwindSafe for JvmConfig
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