#[derive(
Debug,
Clone,
conjure_object::serde::Serialize,
conjure_object::serde::Deserialize,
PartialEq,
Eq,
PartialOrd,
Ord,
Hash
)]
#[serde(crate = "conjure_object::serde")]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct BranchNotFound {
#[serde(rename = "resourceRid")]
resource_rid: conjure_object::ResourceIdentifier,
#[serde(rename = "branchName")]
branch_name: super::super::super::super::super::objects::scout::versioning::api::BranchName,
}
impl BranchNotFound {
#[inline]
pub fn new(
resource_rid: conjure_object::ResourceIdentifier,
branch_name: super::super::super::super::super::objects::scout::versioning::api::BranchName,
) -> Self {
Self::builder().resource_rid(resource_rid).branch_name(branch_name).build()
}
#[inline]
pub fn resource_rid(&self) -> &conjure_object::ResourceIdentifier {
&self.resource_rid
}
#[inline]
pub fn branch_name(
&self,
) -> &super::super::super::super::super::objects::scout::versioning::api::BranchName {
&self.branch_name
}
}
impl conjure_error::ErrorType for BranchNotFound {
#[inline]
fn code() -> conjure_error::ErrorCode {
conjure_error::ErrorCode::NotFound
}
#[inline]
fn name() -> &'static str {
"Scout:BranchNotFound"
}
#[inline]
fn safe_args() -> &'static [&'static str] {
&["resourceRid"]
}
}