pub struct ProposalRow {
pub proposal_id: String,
pub run_id: String,
pub scope: String,
pub kind: String,
pub text: String,
pub rationale: String,
pub proposed_confidence: f32,
pub status: String,
pub decided_reason: Option<String>,
}Fields§
§proposal_id: String§run_id: String§scope: String§kind: String§text: String§rationale: String§proposed_confidence: f32§status: String§decided_reason: Option<String>Trait Implementations§
Source§impl Clone for ProposalRow
impl Clone for ProposalRow
Source§fn clone(&self) -> ProposalRow
fn clone(&self) -> ProposalRow
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 ProposalRow
impl RefUnwindSafe for ProposalRow
impl Send for ProposalRow
impl Sync for ProposalRow
impl Unpin for ProposalRow
impl UnsafeUnpin for ProposalRow
impl UnwindSafe for ProposalRow
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