pub struct BuilderTestExpected {
pub success: bool,
pub typed_root: Option<TypedRootData>,
pub errors: Vec<String>,
}Expand description
Expected builder test results for comparison.
This struct represents the expected output of a builder test, including success status, typed root structure, and any expected errors.
Fields§
§success: bool§typed_root: Option<TypedRootData>§errors: Vec<String>Trait Implementations§
Source§impl Debug for BuilderTestExpected
impl Debug for BuilderTestExpected
Source§impl<'de> Deserialize<'de> for BuilderTestExpected
impl<'de> Deserialize<'de> for BuilderTestExpected
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 BuilderTestExpected
impl PartialEq for BuilderTestExpected
Source§impl Serialize for BuilderTestExpected
impl Serialize for BuilderTestExpected
impl StructuralPartialEq for BuilderTestExpected
Auto Trait Implementations§
impl Freeze for BuilderTestExpected
impl RefUnwindSafe for BuilderTestExpected
impl Send for BuilderTestExpected
impl Sync for BuilderTestExpected
impl Unpin for BuilderTestExpected
impl UnwindSafe for BuilderTestExpected
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