pub struct RespuestaDetallarCargoRecurrente {
pub id: String,
pub nombre: String,
pub id_aplicativo: String,
pub monto: f64,
pub descripcion_producto: String,
pub esta_activo: bool,
pub url_corta_suscribirse: String,
pub url_larga_suscribirse: String,
pub url_imagen_principal: Option<String>,
pub url_suscribirse_qr: String,
pub fecha_creacion: DateTime<Utc>,
}Fields§
§id: String§nombre: String§id_aplicativo: String§monto: f64§descripcion_producto: String§esta_activo: bool§url_corta_suscribirse: String§url_larga_suscribirse: String§url_imagen_principal: Option<String>§url_suscribirse_qr: String§fecha_creacion: DateTime<Utc>Trait Implementations§
Source§impl Clone for RespuestaDetallarCargoRecurrente
impl Clone for RespuestaDetallarCargoRecurrente
Source§fn clone(&self) -> RespuestaDetallarCargoRecurrente
fn clone(&self) -> RespuestaDetallarCargoRecurrente
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<'de> Deserialize<'de> for RespuestaDetallarCargoRecurrente
impl<'de> Deserialize<'de> for RespuestaDetallarCargoRecurrente
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
Source§impl PartialEq for RespuestaDetallarCargoRecurrente
impl PartialEq for RespuestaDetallarCargoRecurrente
Source§fn eq(&self, other: &RespuestaDetallarCargoRecurrente) -> bool
fn eq(&self, other: &RespuestaDetallarCargoRecurrente) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RespuestaDetallarCargoRecurrente
Auto Trait Implementations§
impl Freeze for RespuestaDetallarCargoRecurrente
impl RefUnwindSafe for RespuestaDetallarCargoRecurrente
impl Send for RespuestaDetallarCargoRecurrente
impl Sync for RespuestaDetallarCargoRecurrente
impl Unpin for RespuestaDetallarCargoRecurrente
impl UnwindSafe for RespuestaDetallarCargoRecurrente
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