pub struct BazelHeader {
loads: Vec<LoadStatement>,
}
Expand description
Header to include on a BUILD.bazel file.
Includes special text to indicate this file is generated, and imports any necessary Rust rules.
TODO(parkmycar): This works for now but should surely be refactored.
Fields§
§loads: Vec<LoadStatement>
Implementations§
Source§impl BazelHeader
impl BazelHeader
pub fn generate(targets: &[Box<dyn RustTarget>]) -> Self
Trait Implementations§
Source§impl Debug for BazelHeader
impl Debug for BazelHeader
Source§impl ToBazelDefinition for BazelHeader
impl ToBazelDefinition for BazelHeader
Auto Trait Implementations§
impl Freeze for BazelHeader
impl RefUnwindSafe for BazelHeader
impl Send for BazelHeader
impl Sync for BazelHeader
impl Unpin for BazelHeader
impl UnwindSafe for BazelHeader
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more