pub struct StructTarget<'tcx> {
pub def_id: DefId,
pub invariants: StructInvariants<'tcx>,
pub function_targets: Vec<FunctionTarget<'tcx>>,
}Expand description
Collected verification data for a struct that owns methods marked with #[rapx::verify].
Fields§
§def_id: DefIdStruct that owns one or more methods selected as targets to verify.
invariants: StructInvariants<'tcx>Parsed invariant contracts attached to the struct.
function_targets: Vec<FunctionTarget<'tcx>>Methods of this struct selected as targets to verify.
Auto Trait Implementations§
impl<'tcx> Freeze for StructTarget<'tcx>
impl<'tcx> !RefUnwindSafe for StructTarget<'tcx>
impl<'tcx> Send for StructTarget<'tcx>
impl<'tcx> Sync for StructTarget<'tcx>
impl<'tcx> Unpin for StructTarget<'tcx>
impl<'tcx> !UnwindSafe for StructTarget<'tcx>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more