pub enum Synthesis {
Content(String),
Refused(String),
}Expand description
F48 Phase B — the outcome of trying to reconstruct a post-edit file.
Variants§
Content(String)
The file was read and the edits applied; judge this content.
Refused(String)
No faithful reconstruction was possible. The string explains why, and the caller must fall back to the interim refusal — never to an allow.
Auto Trait Implementations§
impl Freeze for Synthesis
impl RefUnwindSafe for Synthesis
impl Send for Synthesis
impl Sync for Synthesis
impl Unpin for Synthesis
impl UnsafeUnpin for Synthesis
impl UnwindSafe for Synthesis
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