Struct plexo_sdk::organization::operations::UpdateOrganizationInput
source · pub struct UpdateOrganizationInput {
pub name: Option<String>,
pub photo_url: Option<String>,
pub email: Option<String>,
pub description: Option<String>,
pub hub_id: Option<String>,
pub plan_id: Option<String>,
}Fields§
§name: Option<String>§photo_url: Option<String>§email: Option<String>§description: Option<String>§hub_id: Option<String>§plan_id: Option<String>Trait Implementations§
source§impl Clone for UpdateOrganizationInput
impl Clone for UpdateOrganizationInput
source§fn clone(&self) -> UpdateOrganizationInput
fn clone(&self) -> UpdateOrganizationInput
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 Default for UpdateOrganizationInput
impl Default for UpdateOrganizationInput
source§fn default() -> UpdateOrganizationInput
fn default() -> UpdateOrganizationInput
Returns the “default value” for a type. Read more
source§impl InputType for UpdateOrganizationInput
impl InputType for UpdateOrganizationInput
§type RawValueType = UpdateOrganizationInput
type RawValueType = UpdateOrganizationInput
The raw type used for validator. Read more
source§fn create_type_info(registry: &mut Registry) -> String
fn create_type_info(registry: &mut Registry) -> String
Create type information in the registry and return qualified typename.
source§fn parse(value: Option<Value>) -> InputValueResult<Self>
fn parse(value: Option<Value>) -> InputValueResult<Self>
Parse from
Value. None represents undefined.source§fn as_raw_value(&self) -> Option<&Self::RawValueType>
fn as_raw_value(&self) -> Option<&Self::RawValueType>
Returns a reference to the raw value.
source§fn qualified_type_name() -> String
fn qualified_type_name() -> String
Qualified typename.
source§impl ParseFromJSON for UpdateOrganizationInput
impl ParseFromJSON for UpdateOrganizationInput
source§fn parse_from_json(value: Option<Value>) -> Result<Self, ParseError<Self>>
fn parse_from_json(value: Option<Value>) -> Result<Self, ParseError<Self>>
Parse from
serde_json::Value.source§fn parse_from_json_string(s: &str) -> Result<Self, ParseError<Self>>
fn parse_from_json_string(s: &str) -> Result<Self, ParseError<Self>>
Parse from JSON string.
source§impl ParseFromXML for UpdateOrganizationInput
impl ParseFromXML for UpdateOrganizationInput
source§fn parse_from_xml(value: Option<Value>) -> Result<Self, ParseError<Self>>
fn parse_from_xml(value: Option<Value>) -> Result<Self, ParseError<Self>>
Parse from
serde_json::Value.source§fn parse_from_xml_string(s: &str) -> Result<Self, ParseError<Self>>
fn parse_from_xml_string(s: &str) -> Result<Self, ParseError<Self>>
Parse from XML string.
source§impl ParseFromYAML for UpdateOrganizationInput
impl ParseFromYAML for UpdateOrganizationInput
source§fn parse_from_yaml(value: Option<Value>) -> Result<Self, ParseError<Self>>
fn parse_from_yaml(value: Option<Value>) -> Result<Self, ParseError<Self>>
Parse from
serde_json::Value.source§fn parse_from_yaml_string(s: &str) -> Result<Self, ParseError<Self>>
fn parse_from_yaml_string(s: &str) -> Result<Self, ParseError<Self>>
Parse from YAML string.
source§impl Serialize for UpdateOrganizationInput
impl Serialize for UpdateOrganizationInput
source§impl ToJSON for UpdateOrganizationInput
impl ToJSON for UpdateOrganizationInput
source§impl ToXML for UpdateOrganizationInput
impl ToXML for UpdateOrganizationInput
source§impl ToYAML for UpdateOrganizationInput
impl ToYAML for UpdateOrganizationInput
source§impl Type for UpdateOrganizationInput
impl Type for UpdateOrganizationInput
source§const IS_REQUIRED: bool = true
const IS_REQUIRED: bool = true
If it is
true, it means that this type is required.§type RawValueType = UpdateOrganizationInput
type RawValueType = UpdateOrganizationInput
The raw type used for validator. Read more
§type RawElementValueType = UpdateOrganizationInput
type RawElementValueType = UpdateOrganizationInput
The raw element type used for validator.
source§fn schema_ref() -> MetaSchemaRef
fn schema_ref() -> MetaSchemaRef
Get schema reference of this type.
source§fn as_raw_value(&self) -> Option<&Self::RawValueType>
fn as_raw_value(&self) -> Option<&Self::RawValueType>
Returns a reference to the raw value.
source§fn raw_element_iter<'a>(
&'a self
) -> Box<dyn Iterator<Item = &'a Self::RawElementValueType> + 'a>
fn raw_element_iter<'a>( &'a self ) -> Box<dyn Iterator<Item = &'a Self::RawElementValueType> + 'a>
Returns an iterator for traversing the elements.
impl InputObjectType for UpdateOrganizationInput
Auto Trait Implementations§
impl Freeze for UpdateOrganizationInput
impl RefUnwindSafe for UpdateOrganizationInput
impl Send for UpdateOrganizationInput
impl Sync for UpdateOrganizationInput
impl Unpin for UpdateOrganizationInput
impl UnwindSafe for UpdateOrganizationInput
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