pub struct CompilationResponse {
pub id: String,
pub success: bool,
pub compiled_code: Option<String>,
pub errors: Vec<ValidationError>,
}Fields§
§id: String§success: bool§compiled_code: Option<String>§errors: Vec<ValidationError>Trait Implementations§
Source§impl Clone for CompilationResponse
impl Clone for CompilationResponse
Source§fn clone(&self) -> CompilationResponse
fn clone(&self) -> CompilationResponse
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 CompilationResponse
impl Debug for CompilationResponse
Source§impl<'de> Deserialize<'de> for CompilationResponse
impl<'de> Deserialize<'de> for CompilationResponse
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 CompilationResponse
impl RefUnwindSafe for CompilationResponse
impl Send for CompilationResponse
impl Sync for CompilationResponse
impl Unpin for CompilationResponse
impl UnwindSafe for CompilationResponse
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