pub struct DistillRequest {Show 15 fields
pub statement: String,
pub content: String,
pub tier: String,
pub supporting_refs: Vec<String>,
pub wing: String,
pub room: String,
pub domain: String,
pub field: String,
pub cwd: Option<PathBuf>,
pub scope_constraints: Option<String>,
pub counterexample_refs: Vec<String>,
pub teaching_refs: Vec<String>,
pub trigger_hints: Option<TriggerHints>,
pub importance: i32,
pub dry_run: bool,
}Fields§
§statement: String§content: String§tier: String§supporting_refs: Vec<String>§wing: String§room: String§domain: String§field: String§cwd: Option<PathBuf>§scope_constraints: Option<String>§counterexample_refs: Vec<String>§teaching_refs: Vec<String>§trigger_hints: Option<TriggerHints>§importance: i32§dry_run: boolTrait Implementations§
Source§impl Clone for DistillRequest
impl Clone for DistillRequest
Source§fn clone(&self) -> DistillRequest
fn clone(&self) -> DistillRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DistillRequest
impl RefUnwindSafe for DistillRequest
impl Send for DistillRequest
impl Sync for DistillRequest
impl Unpin for DistillRequest
impl UnsafeUnpin for DistillRequest
impl UnwindSafe for DistillRequest
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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