pub struct RustexConfig {
pub project_root: Utf8PathBuf,
pub convex_root: Utf8PathBuf,
pub out_dir: Utf8PathBuf,
pub emit: Vec<String>,
pub strict: bool,
pub allow_inferred_returns: bool,
pub naming_strategy: String,
pub id_style: String,
pub custom_derives: Vec<String>,
pub custom_attributes: Vec<String>,
}Fields§
§project_root: Utf8PathBuf§convex_root: Utf8PathBuf§out_dir: Utf8PathBuf§emit: Vec<String>§strict: bool§allow_inferred_returns: bool§naming_strategy: String§id_style: String§custom_derives: Vec<String>§custom_attributes: Vec<String>Trait Implementations§
Source§impl Clone for RustexConfig
impl Clone for RustexConfig
Source§fn clone(&self) -> RustexConfig
fn clone(&self) -> RustexConfig
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 RustexConfig
impl Debug for RustexConfig
Source§impl Default for RustexConfig
impl Default for RustexConfig
Source§impl<'de> Deserialize<'de> for RustexConfig
impl<'de> Deserialize<'de> for RustexConfig
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 RustexConfig
impl RefUnwindSafe for RustexConfig
impl Send for RustexConfig
impl Sync for RustexConfig
impl Unpin for RustexConfig
impl UnsafeUnpin for RustexConfig
impl UnwindSafe for RustexConfig
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