pub struct GoogleAssetImageDTO {
pub url: String,
pub resource_name: Option<String>,
pub name: Option<String>,
pub error: Option<String>,
}Available on crate feature
ad-manager only.Expand description
GoogleAssetImageDTO from the GoHighLevel OpenAPI spec.
Fields§
§url: StringImage URL Required by the API.
resource_name: Option<String>Google Ads resource name
name: Option<String>Asset name
error: Option<String>Error message if asset upload failed
Trait Implementations§
Source§impl Clone for GoogleAssetImageDTO
impl Clone for GoogleAssetImageDTO
Source§fn clone(&self) -> GoogleAssetImageDTO
fn clone(&self) -> GoogleAssetImageDTO
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GoogleAssetImageDTO
impl Debug for GoogleAssetImageDTO
Source§impl Default for GoogleAssetImageDTO
impl Default for GoogleAssetImageDTO
Source§fn default() -> GoogleAssetImageDTO
fn default() -> GoogleAssetImageDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleAssetImageDTO
impl<'de> Deserialize<'de> for GoogleAssetImageDTO
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 GoogleAssetImageDTO
impl RefUnwindSafe for GoogleAssetImageDTO
impl Send for GoogleAssetImageDTO
impl Sync for GoogleAssetImageDTO
impl Unpin for GoogleAssetImageDTO
impl UnsafeUnpin for GoogleAssetImageDTO
impl UnwindSafe for GoogleAssetImageDTO
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