pub struct Project {
pub project_name: String,
pub scripts_path: String,
pub data_format: DataFormat,
pub rgss_ver: RGSSVer,
pub editor_ver: RMVer,
pub volume_scale: VolumeScale,
pub playtest_exe: String,
pub prefer_rgssad: bool,
pub persistence_id: u64,
}Expand description
Local luminol project config
Fields§
§project_name: String§scripts_path: String§data_format: DataFormat§rgss_ver: RGSSVer§editor_ver: RMVer§volume_scale: VolumeScale§playtest_exe: String§prefer_rgssad: bool§persistence_id: u64Trait Implementations§
Source§impl<'de> Deserialize<'de> for Project
impl<'de> Deserialize<'de> for Project
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 Project
impl RefUnwindSafe for Project
impl Send for Project
impl Sync for Project
impl Unpin for Project
impl UnwindSafe for Project
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