pub struct BizLicense {Show 14 fields
pub reg_num: String,
pub serial: String,
pub legal_representative: String,
pub enterprise_name: String,
pub type_of_organization: String,
pub address: String,
pub type_of_enterprise: String,
pub business_scope: String,
pub registered_capital: String,
pub paid_in_capital: String,
pub valid_period: String,
pub registered_date: String,
pub cert_position: CertPosition,
pub image_size: ImageSize,
}
Fields§
§reg_num: String
§serial: String
§legal_representative: String
§enterprise_name: String
§type_of_organization: String
§address: String
§type_of_enterprise: String
§business_scope: String
§registered_capital: String
§paid_in_capital: String
§valid_period: String
§registered_date: String
§cert_position: CertPosition
§image_size: ImageSize
Trait Implementations§
Source§impl Debug for BizLicense
impl Debug for BizLicense
Source§impl<'de> Deserialize<'de> for BizLicense
impl<'de> Deserialize<'de> for BizLicense
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 BizLicense
impl RefUnwindSafe for BizLicense
impl Send for BizLicense
impl Sync for BizLicense
impl Unpin for BizLicense
impl UnwindSafe for BizLicense
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> 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