#[non_exhaustive]pub struct ProjectResponse<'base> {
pub root_files: Vec<&'base str>,
pub source_files: Vec<&'base Bytes>,
pub module_list: Vec<&'base str>,
pub semantic: Semantic,
pub diagnostics: Vec<Diagnostic>,
pub source_file_extra: Vec<SourceFileExtra>,
}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.root_files: Vec<&'base str>§source_files: Vec<&'base Bytes>§module_list: Vec<&'base str>§semantic: Semantic§diagnostics: Vec<Diagnostic>§source_file_extra: Vec<SourceFileExtra>Trait Implementations§
Source§impl<'base> Clone for ProjectResponse<'base>
impl<'base> Clone for ProjectResponse<'base>
Source§fn clone(&self) -> ProjectResponse<'base>
fn clone(&self) -> ProjectResponse<'base>
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<'base> Debug for ProjectResponse<'base>
impl<'base> Debug for ProjectResponse<'base>
Source§impl<'de: 'base, 'base> Deserialize<'de> for ProjectResponse<'base>
impl<'de: 'base, 'base> Deserialize<'de> for ProjectResponse<'base>
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<'base> Freeze for ProjectResponse<'base>
impl<'base> RefUnwindSafe for ProjectResponse<'base>
impl<'base> Send for ProjectResponse<'base>
impl<'base> Sync for ProjectResponse<'base>
impl<'base> Unpin for ProjectResponse<'base>
impl<'base> UnwindSafe for ProjectResponse<'base>
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