pub struct EntrypointTruncation {
pub content: String,
pub line_count: usize,
pub byte_count: usize,
pub was_line_truncated: bool,
pub was_byte_truncated: bool,
}Expand description
Entrypoint truncation result
Fields§
§content: String§line_count: usize§byte_count: usize§was_line_truncated: bool§was_byte_truncated: boolTrait Implementations§
Source§impl Clone for EntrypointTruncation
impl Clone for EntrypointTruncation
Source§fn clone(&self) -> EntrypointTruncation
fn clone(&self) -> EntrypointTruncation
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 moreAuto Trait Implementations§
impl Freeze for EntrypointTruncation
impl RefUnwindSafe for EntrypointTruncation
impl Send for EntrypointTruncation
impl Sync for EntrypointTruncation
impl Unpin for EntrypointTruncation
impl UnsafeUnpin for EntrypointTruncation
impl UnwindSafe for EntrypointTruncation
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