Struct mailchimp_api::types::Links
source · pub struct Links {
pub href: String,
pub method: Option<Method>,
pub rel: String,
pub schema: String,
pub target_schema: String,
}
Expand description
This object represents a link from the resource where it is found to another resource or action that may be performed.
Fields
href: String
This object represents a link from the resource where it is found to another resource or action that may be performed.
method: Option<Method>
This object represents a link from the resource where it is found to another resource or action that may be performed.
rel: String
This object represents a link from the resource where it is found to another resource or action that may be performed.
schema: String
This object represents a link from the resource where it is found to another resource or action that may be performed.
target_schema: String
This object represents a link from the resource where it is found to another resource or action that may be performed.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Links
impl<'de> Deserialize<'de> for Links
sourcefn 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
sourceimpl JsonSchema for Links
impl JsonSchema for Links
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreimpl StructuralPartialEq for Links
Auto Trait Implementations
impl RefUnwindSafe for Links
impl Send for Links
impl Sync for Links
impl Unpin for Links
impl UnwindSafe for Links
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more