pub struct BusinessMatchRecord { /* private fields */ }Expand description
The BusinessMatchRecord struct holds match data for a licensed business.
Implementations§
Source§impl BusinessMatchRecord
impl BusinessMatchRecord
Sourcepub fn company_name(&self) -> Option<String>
pub fn company_name(&self) -> Option<String>
The company_name field represents the registered business name associated with the
active business license.
Sourcepub fn contact_name(&self) -> Option<String>
pub fn contact_name(&self) -> Option<String>
The contact_name field represents the contact name associated with the
active business license.
Sourcepub fn dba(&self) -> Option<String>
pub fn dba(&self) -> Option<String>
The dba field represents the business name alias associated with the
active business license.
Sourcepub fn business_address_label(&self) -> String
pub fn business_address_label(&self) -> String
The business_address_label field represents the submitted address associated with the
active business license.
Sourcepub fn other_address_label(&self) -> Option<String>
pub fn other_address_label(&self) -> Option<String>
The other_address_label field represents the City address associated with the
active business license.
Sourcepub fn license(&self) -> String
pub fn license(&self) -> String
The license field represents the business license number associated with the
active business license.
Sourcepub fn industry_code(&self) -> i64
pub fn industry_code(&self) -> i64
The industry_code field represents the tax code associated with the
active business license.
Trait Implementations§
Source§impl Clone for BusinessMatchRecord
impl Clone for BusinessMatchRecord
Source§fn clone(&self) -> BusinessMatchRecord
fn clone(&self) -> BusinessMatchRecord
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for BusinessMatchRecord
impl Debug for BusinessMatchRecord
Source§impl<'de> Deserialize<'de> for BusinessMatchRecord
impl<'de> Deserialize<'de> for BusinessMatchRecord
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>,
Source§impl PartialEq for BusinessMatchRecord
impl PartialEq for BusinessMatchRecord
Source§impl PartialOrd for BusinessMatchRecord
impl PartialOrd for BusinessMatchRecord
Source§impl Serialize for BusinessMatchRecord
impl Serialize for BusinessMatchRecord
impl StructuralPartialEq for BusinessMatchRecord
Auto Trait Implementations§
impl Freeze for BusinessMatchRecord
impl RefUnwindSafe for BusinessMatchRecord
impl Send for BusinessMatchRecord
impl Sync for BusinessMatchRecord
impl Unpin for BusinessMatchRecord
impl UnwindSafe for BusinessMatchRecord
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
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>
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