pub struct RegionStatus {
pub success: bool,
pub matched_count: usize,
pub error: Option<String>,
}Expand description
Status of extraction for a single region
Fields§
§success: boolWhether extraction succeeded
matched_count: usizeNumber of elements matched
error: Option<String>Error message if failed
Trait Implementations§
Source§impl Clone for RegionStatus
impl Clone for RegionStatus
Source§fn clone(&self) -> RegionStatus
fn clone(&self) -> RegionStatus
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 RegionStatus
impl Debug for RegionStatus
Source§impl<'de> Deserialize<'de> for RegionStatus
impl<'de> Deserialize<'de> for RegionStatus
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
Auto Trait Implementations§
impl Freeze for RegionStatus
impl RefUnwindSafe for RegionStatus
impl Send for RegionStatus
impl Sync for RegionStatus
impl Unpin for RegionStatus
impl UnsafeUnpin for RegionStatus
impl UnwindSafe for RegionStatus
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