pub struct ProjectColumnMoved {
pub action: ProjectColumnMovedAction,
pub installation: Option<InstallationLite>,
pub organization: Option<Organization>,
pub project_column: ProjectColumn,
pub repository: Option<Repository>,
pub sender: User,
}
Expand description
ProjectColumnMoved
JSON schema
{
"title": "project_column moved event",
"type": "object",
"required": [
"action",
"project_column",
"sender"
],
"properties": {
"action": {
"type": "string",
"enum": [
"moved"
]
},
"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: ProjectColumnMovedAction
§installation: Option<InstallationLite>
§organization: Option<Organization>
§project_column: ProjectColumn
§repository: Option<Repository>
§sender: User
Implementations§
Source§impl ProjectColumnMoved
impl ProjectColumnMoved
pub fn builder() -> ProjectColumnMoved
Trait Implementations§
Source§impl Clone for ProjectColumnMoved
impl Clone for ProjectColumnMoved
Source§fn clone(&self) -> ProjectColumnMoved
fn clone(&self) -> ProjectColumnMoved
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 ProjectColumnMoved
impl Debug for ProjectColumnMoved
Source§impl<'de> Deserialize<'de> for ProjectColumnMoved
impl<'de> Deserialize<'de> for ProjectColumnMoved
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<&ProjectColumnMoved> for ProjectColumnMoved
impl From<&ProjectColumnMoved> for ProjectColumnMoved
Source§fn from(value: &ProjectColumnMoved) -> Self
fn from(value: &ProjectColumnMoved) -> Self
Converts to this type from the input type.
Source§impl From<ProjectColumnMoved> for ProjectColumnEvent
impl From<ProjectColumnMoved> for ProjectColumnEvent
Source§fn from(value: ProjectColumnMoved) -> Self
fn from(value: ProjectColumnMoved) -> Self
Converts to this type from the input type.
Source§impl From<ProjectColumnMoved> for ProjectColumnMoved
impl From<ProjectColumnMoved> for ProjectColumnMoved
Source§fn from(value: ProjectColumnMoved) -> Self
fn from(value: ProjectColumnMoved) -> Self
Converts to this type from the input type.
Source§impl Serialize for ProjectColumnMoved
impl Serialize for ProjectColumnMoved
Auto Trait Implementations§
impl Freeze for ProjectColumnMoved
impl RefUnwindSafe for ProjectColumnMoved
impl Send for ProjectColumnMoved
impl Sync for ProjectColumnMoved
impl Unpin for ProjectColumnMoved
impl UnwindSafe for ProjectColumnMoved
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