pub struct EnderecoNfse {
pub logradouro: String,
pub numero: String,
pub complemento: Option<String>,
pub bairro: String,
pub codigo_municipio: String,
pub municipio: String,
pub uf: String,
pub cep: String,
pub codigo_pais: Option<String>,
}Expand description
Endereço para NFS-e
Fields§
§logradouro: StringLogradouro
numero: StringNúmero
complemento: Option<String>Complemento
bairro: StringBairro
codigo_municipio: StringCódigo do município (IBGE)
municipio: StringNome do município
uf: StringUF
cep: StringCEP
codigo_pais: Option<String>Código do país (1058 = Brasil)
Trait Implementations§
Source§impl Clone for EnderecoNfse
impl Clone for EnderecoNfse
Source§fn clone(&self) -> EnderecoNfse
fn clone(&self) -> EnderecoNfse
Returns a duplicate of the value. Read more
1.0.0 · 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 EnderecoNfse
impl Debug for EnderecoNfse
Source§impl<'de> Deserialize<'de> for EnderecoNfse
impl<'de> Deserialize<'de> for EnderecoNfse
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 EnderecoNfse
impl RefUnwindSafe for EnderecoNfse
impl Send for EnderecoNfse
impl Sync for EnderecoNfse
impl Unpin for EnderecoNfse
impl UnsafeUnpin for EnderecoNfse
impl UnwindSafe for EnderecoNfse
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