pub struct GetTdeCertificatesSqlTaskOutput {
pub base64_encoded_certificates: Option<String>,
pub validation_errors: Vec<ReportableException>,
}
Expand description
Output of the task that gets TDE certificates in Base64 encoded format.
Fields§
§base64_encoded_certificates: Option<String>
Mapping from certificate name to base 64 encoded format.
validation_errors: Vec<ReportableException>
Validation errors
Implementations§
Trait Implementations§
Source§impl Clone for GetTdeCertificatesSqlTaskOutput
impl Clone for GetTdeCertificatesSqlTaskOutput
Source§fn clone(&self) -> GetTdeCertificatesSqlTaskOutput
fn clone(&self) -> GetTdeCertificatesSqlTaskOutput
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 Default for GetTdeCertificatesSqlTaskOutput
impl Default for GetTdeCertificatesSqlTaskOutput
Source§fn default() -> GetTdeCertificatesSqlTaskOutput
fn default() -> GetTdeCertificatesSqlTaskOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetTdeCertificatesSqlTaskOutput
impl<'de> Deserialize<'de> for GetTdeCertificatesSqlTaskOutput
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 GetTdeCertificatesSqlTaskOutput
impl PartialEq for GetTdeCertificatesSqlTaskOutput
Source§fn eq(&self, other: &GetTdeCertificatesSqlTaskOutput) -> bool
fn eq(&self, other: &GetTdeCertificatesSqlTaskOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetTdeCertificatesSqlTaskOutput
Auto Trait Implementations§
impl Freeze for GetTdeCertificatesSqlTaskOutput
impl RefUnwindSafe for GetTdeCertificatesSqlTaskOutput
impl Send for GetTdeCertificatesSqlTaskOutput
impl Sync for GetTdeCertificatesSqlTaskOutput
impl Unpin for GetTdeCertificatesSqlTaskOutput
impl UnwindSafe for GetTdeCertificatesSqlTaskOutput
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