alpha
Login
or
Join now
gwen.works
/
shapemaker
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
🎨 Format code
author
gwennlbh
committer
github-actions[bot]
date
8 months ago
(Oct 27, 2025, 10:06 PM UTC)
commit
71f3b2e0
71f3b2e0a11e2596d71499da9e5937693f992329
parent
da383e99
da383e990de521b5003ffe6a85ad076ef2b85a4b
+1
-1
1 changed file
Expand all
Collapse all
Unified
Split
src
ui.rs
+1
-1
src/ui.rs
Reviewed
···
98
98
99
99
pub trait MaybeProgressBar<'a> {
100
100
fn set_message(&'a self, message: impl Into<Cow<'static, str>>);
101
101
-
fn set_length(&'a self, length: u64);
101
101
+
fn set_length(&'a self, length: u64);
102
102
fn inc(&'a self, n: u64);
103
103
fn println(&'a self, message: impl AsRef<str>);
104
104
}