struct DatabaseCertificateConfigurationInner<'a> {Show 22 fields
pub id: Uuid,
pub certificate_owner_name_y_pos: &'a str,
pub certificate_owner_name_x_pos: &'a str,
pub certificate_owner_name_font_size: &'a str,
pub certificate_owner_name_text_color: &'a str,
pub certificate_owner_name_text_anchor: CertificateTextAnchor,
pub certificate_validate_url_y_pos: &'a str,
pub certificate_validate_url_x_pos: &'a str,
pub certificate_validate_url_font_size: &'a str,
pub certificate_validate_url_text_color: &'a str,
pub certificate_validate_url_text_anchor: CertificateTextAnchor,
pub certificate_date_y_pos: &'a str,
pub certificate_date_x_pos: &'a str,
pub certificate_date_font_size: &'a str,
pub certificate_date_text_color: &'a str,
pub certificate_date_text_anchor: CertificateTextAnchor,
pub certificate_locale: &'a str,
pub paper_size: PaperSize,
pub background_svg_path: &'a str,
pub background_svg_file_upload_id: Uuid,
pub overlay_svg_path: Option<&'a str>,
pub overlay_svg_file_upload_id: Option<Uuid>,
}
Fields§
§id: Uuid
§certificate_owner_name_y_pos: &'a str
§certificate_owner_name_x_pos: &'a str
§certificate_owner_name_font_size: &'a str
§certificate_owner_name_text_color: &'a str
§certificate_owner_name_text_anchor: CertificateTextAnchor
§certificate_validate_url_y_pos: &'a str
§certificate_validate_url_x_pos: &'a str
§certificate_validate_url_font_size: &'a str
§certificate_validate_url_text_color: &'a str
§certificate_validate_url_text_anchor: CertificateTextAnchor
§certificate_date_y_pos: &'a str
§certificate_date_x_pos: &'a str
§certificate_date_font_size: &'a str
§certificate_date_text_color: &'a str
§certificate_date_text_anchor: CertificateTextAnchor
§certificate_locale: &'a str
§paper_size: PaperSize
§background_svg_path: &'a str
§background_svg_file_upload_id: Uuid
§overlay_svg_path: Option<&'a str>
§overlay_svg_file_upload_id: Option<Uuid>
Trait Implementations§
Source§impl<'a> Clone for DatabaseCertificateConfigurationInner<'a>
impl<'a> Clone for DatabaseCertificateConfigurationInner<'a>
Source§fn clone(&self) -> DatabaseCertificateConfigurationInner<'a>
fn clone(&self) -> DatabaseCertificateConfigurationInner<'a>
Returns a copy 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<'a> Debug for DatabaseCertificateConfigurationInner<'a>
impl<'a> Debug for DatabaseCertificateConfigurationInner<'a>
Source§impl<'de: 'a, 'a> Deserialize<'de> for DatabaseCertificateConfigurationInner<'a>
impl<'de: 'a, 'a> Deserialize<'de> for DatabaseCertificateConfigurationInner<'a>
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<'a> PartialEq for DatabaseCertificateConfigurationInner<'a>
impl<'a> PartialEq for DatabaseCertificateConfigurationInner<'a>
Source§fn eq(&self, other: &DatabaseCertificateConfigurationInner<'a>) -> bool
fn eq(&self, other: &DatabaseCertificateConfigurationInner<'a>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl<'a> Serialize for DatabaseCertificateConfigurationInner<'a>
impl<'a> Serialize for DatabaseCertificateConfigurationInner<'a>
impl<'a> Copy for DatabaseCertificateConfigurationInner<'a>
impl<'a> Eq for DatabaseCertificateConfigurationInner<'a>
impl<'a> StructuralPartialEq for DatabaseCertificateConfigurationInner<'a>
Auto Trait Implementations§
impl<'a> Freeze for DatabaseCertificateConfigurationInner<'a>
impl<'a> RefUnwindSafe for DatabaseCertificateConfigurationInner<'a>
impl<'a> Send for DatabaseCertificateConfigurationInner<'a>
impl<'a> Sync for DatabaseCertificateConfigurationInner<'a>
impl<'a> Unpin for DatabaseCertificateConfigurationInner<'a>
impl<'a> UnwindSafe for DatabaseCertificateConfigurationInner<'a>
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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