pub struct BitbucketWorkspace {
pub name: Option<String>,
pub slug: String,
}Expand description
A connected Bitbucket workspace.
JSON schema
{
"title": "BitbucketWorkspace",
"description": "A connected Bitbucket workspace.",
"examples": [
{
"name": "Acme Inc",
"slug": "acme"
}
],
"type": "object",
"required": [
"slug"
],
"properties": {
"name": {
"description": "Display name of the workspace.",
"type": "string"
},
"slug": {
"description": "Unique workspace slug.",
"type": "string"
}
}
}Fields§
§name: Option<String>Display name of the workspace.
slug: StringUnique workspace slug.
Trait Implementations§
Source§impl Clone for BitbucketWorkspace
impl Clone for BitbucketWorkspace
Source§fn clone(&self) -> BitbucketWorkspace
fn clone(&self) -> BitbucketWorkspace
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BitbucketWorkspace
impl Debug for BitbucketWorkspace
Source§impl<'de> Deserialize<'de> for BitbucketWorkspace
impl<'de> Deserialize<'de> for BitbucketWorkspace
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 BitbucketWorkspace
impl RefUnwindSafe for BitbucketWorkspace
impl Send for BitbucketWorkspace
impl Sync for BitbucketWorkspace
impl Unpin for BitbucketWorkspace
impl UnsafeUnpin for BitbucketWorkspace
impl UnwindSafe for BitbucketWorkspace
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