pub struct ODPSSupport {
pub channel: String,
pub url: String,
pub description: Option<String>,
pub tool: Option<String>,
pub scope: Option<String>,
pub invitation_url: Option<String>,
pub tags: Vec<Tag>,
pub custom_properties: Option<Vec<ODPSCustomProperty>>,
pub authoritative_definitions: Option<Vec<ODPSAuthoritativeDefinition>>,
}Expand description
Support channel
Fields§
§channel: StringChannel name
url: StringAccess URL
description: Option<String>Description
tool: Option<String>Tool name
scope: Option<String>Scope
invitation_url: Option<String>Invitation URL
Tags
custom_properties: Option<Vec<ODPSCustomProperty>>Custom properties
Authoritative definitions
Trait Implementations§
Source§impl Clone for ODPSSupport
impl Clone for ODPSSupport
Source§fn clone(&self) -> ODPSSupport
fn clone(&self) -> ODPSSupport
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 Debug for ODPSSupport
impl Debug for ODPSSupport
Source§impl<'de> Deserialize<'de> for ODPSSupport
impl<'de> Deserialize<'de> for ODPSSupport
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 ODPSSupport
impl PartialEq for ODPSSupport
Source§impl Serialize for ODPSSupport
impl Serialize for ODPSSupport
impl StructuralPartialEq for ODPSSupport
Auto Trait Implementations§
impl Freeze for ODPSSupport
impl RefUnwindSafe for ODPSSupport
impl Send for ODPSSupport
impl Sync for ODPSSupport
impl Unpin for ODPSSupport
impl UnwindSafe for ODPSSupport
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