pub struct CircleCreateRequest {
pub display_name: String,
pub description: String,
pub image: ImageId,
}
Expand description
Request to create a new Circle.
This creates the draft and live [Circle Data](Circle Data) copies with the requested info.
Fields§
§display_name: String
The Circle’s name.
description: String
Description of the Circle. Defaults to empty string.
image: ImageId
Image of the Circle
Trait Implementations§
Source§impl Debug for CircleCreateRequest
impl Debug for CircleCreateRequest
Source§impl<'de> Deserialize<'de> for CircleCreateRequest
impl<'de> Deserialize<'de> for CircleCreateRequest
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 CircleCreateRequest
impl RefUnwindSafe for CircleCreateRequest
impl Send for CircleCreateRequest
impl Sync for CircleCreateRequest
impl Unpin for CircleCreateRequest
impl UnwindSafe for CircleCreateRequest
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