pub struct BuildLog {}
Expand description
BuildLog is the (unused) resource associated with the build log redirector
Implementations§
Source§impl BuildLog
impl BuildLog
Sourcepub fn read_namespaced_build_log(
name: &str,
namespace: &str,
optional: ReadNamespacedBuildLogOptional<'_>,
) -> Result<(Request<Vec<u8>>, fn(StatusCode) -> ResponseBody<ReadNamespacedBuildLogResponse>), RequestError>
pub fn read_namespaced_build_log( name: &str, namespace: &str, optional: ReadNamespacedBuildLogOptional<'_>, ) -> Result<(Request<Vec<u8>>, fn(StatusCode) -> ResponseBody<ReadNamespacedBuildLogResponse>), RequestError>
read log of the specified Build
Use the returned k8s_openapi::ResponseBody
<
ReadNamespacedBuildLogResponse
>
constructor, or ReadNamespacedBuildLogResponse
directly, to parse the HTTP response.
§Arguments
-
name
name of the BuildLog
-
namespace
object name and auth scope, such as for teams and projects
-
optional
Optional parameters. Use
Default::default()
to not pass any.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BuildLog
impl<'de> Deserialize<'de> for BuildLog
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 Resource for BuildLog
impl Resource for BuildLog
Source§const API_VERSION: &'static str = "build.openshift.io/v1"
const API_VERSION: &'static str = "build.openshift.io/v1"
The API version of the resource. This is a composite of
Resource::GROUP
and Resource::VERSION
(eg "apiextensions.k8s.io/v1beta1"
)
or just the version for resources without a group (eg "v1"
). Read moreimpl StructuralPartialEq for BuildLog
Auto Trait Implementations§
impl Freeze for BuildLog
impl RefUnwindSafe for BuildLog
impl Send for BuildLog
impl Sync for BuildLog
impl Unpin for BuildLog
impl UnwindSafe for BuildLog
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