pub struct AppealFiled {
pub id: AppealId,
pub citations: usize,
}Expand description
A successfully filed appeal.
Fields§
§id: AppealId§citations: usizeHow many content ids were extracted from the statement and resolved. Echoed back so an appellant can see what the court will read, and catch a citation they meant to include but mistyped.
Trait Implementations§
Source§impl Clone for AppealFiled
impl Clone for AppealFiled
Source§fn clone(&self) -> AppealFiled
fn clone(&self) -> AppealFiled
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 moreSource§impl Debug for AppealFiled
impl Debug for AppealFiled
Source§impl<'de> Deserialize<'de> for AppealFiled
impl<'de> Deserialize<'de> for AppealFiled
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
impl Eq for AppealFiled
Source§impl PartialEq for AppealFiled
impl PartialEq for AppealFiled
Source§impl Serialize for AppealFiled
impl Serialize for AppealFiled
impl StructuralPartialEq for AppealFiled
Auto Trait Implementations§
impl Freeze for AppealFiled
impl RefUnwindSafe for AppealFiled
impl Send for AppealFiled
impl Sync for AppealFiled
impl Unpin for AppealFiled
impl UnsafeUnpin for AppealFiled
impl UnwindSafe for AppealFiled
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