pub struct ProjectColumnCreated {
pub action: ProjectColumnCreatedAction,
pub installation: Option<InstallationLite>,
pub organization: Option<Organization>,
pub project_column: ProjectColumn,
pub repository: Option<Repository>,
pub sender: User,
}
Expand description
ProjectColumnCreated
JSON schema
{
"title": "project_column created event",
"type": "object",
"required": [
"action",
"project_column",
"sender"
],
"properties": {
"action": {
"type": "string",
"enum": [
"created"
]
},
"installation": {
"$ref": "#/definitions/installation-lite"
},
"organization": {
"$ref": "#/definitions/organization"
},
"project_column": {
"$ref": "#/definitions/project-column"
},
"repository": {
"$ref": "#/definitions/repository"
},
"sender": {
"$ref": "#/definitions/user"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema"
}
Fields§
§action: ProjectColumnCreatedAction
§installation: Option<InstallationLite>
§organization: Option<Organization>
§project_column: ProjectColumn
§repository: Option<Repository>
§sender: User
Implementations§
Source§impl ProjectColumnCreated
impl ProjectColumnCreated
pub fn builder() -> ProjectColumnCreated
Trait Implementations§
Source§impl Clone for ProjectColumnCreated
impl Clone for ProjectColumnCreated
Source§fn clone(&self) -> ProjectColumnCreated
fn clone(&self) -> ProjectColumnCreated
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 ProjectColumnCreated
impl Debug for ProjectColumnCreated
Source§impl<'de> Deserialize<'de> for ProjectColumnCreated
impl<'de> Deserialize<'de> for ProjectColumnCreated
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 From<&ProjectColumnCreated> for ProjectColumnCreated
impl From<&ProjectColumnCreated> for ProjectColumnCreated
Source§fn from(value: &ProjectColumnCreated) -> Self
fn from(value: &ProjectColumnCreated) -> Self
Converts to this type from the input type.
Source§impl From<ProjectColumnCreated> for ProjectColumnCreated
impl From<ProjectColumnCreated> for ProjectColumnCreated
Source§fn from(value: ProjectColumnCreated) -> Self
fn from(value: ProjectColumnCreated) -> Self
Converts to this type from the input type.
Source§impl From<ProjectColumnCreated> for ProjectColumnEvent
impl From<ProjectColumnCreated> for ProjectColumnEvent
Source§fn from(value: ProjectColumnCreated) -> Self
fn from(value: ProjectColumnCreated) -> Self
Converts to this type from the input type.
Source§impl Serialize for ProjectColumnCreated
impl Serialize for ProjectColumnCreated
Auto Trait Implementations§
impl Freeze for ProjectColumnCreated
impl RefUnwindSafe for ProjectColumnCreated
impl Send for ProjectColumnCreated
impl Sync for ProjectColumnCreated
impl Unpin for ProjectColumnCreated
impl UnwindSafe for ProjectColumnCreated
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