#[non_exhaustive]pub struct CodemodelPaths {
pub build: PathBuf,
pub source: PathBuf,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.build: PathBuf
Absolute path to the top-level source directory, represented with forward slashes.
source: PathBuf
Absolute path to the top-level build directory, represented with forward slashes.
Trait Implementations§
Source§impl Clone for CodemodelPaths
impl Clone for CodemodelPaths
Source§fn clone(&self) -> CodemodelPaths
fn clone(&self) -> CodemodelPaths
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 CodemodelPaths
impl Debug for CodemodelPaths
Source§impl Default for CodemodelPaths
impl Default for CodemodelPaths
Source§fn default() -> CodemodelPaths
fn default() -> CodemodelPaths
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CodemodelPaths
impl<'de> Deserialize<'de> for CodemodelPaths
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 CodemodelPaths
impl PartialEq for CodemodelPaths
Source§impl Serialize for CodemodelPaths
impl Serialize for CodemodelPaths
impl StructuralPartialEq for CodemodelPaths
Auto Trait Implementations§
impl Freeze for CodemodelPaths
impl RefUnwindSafe for CodemodelPaths
impl Send for CodemodelPaths
impl Sync for CodemodelPaths
impl Unpin for CodemodelPaths
impl UnwindSafe for CodemodelPaths
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