Set the source using the full range of affiliated keywords to trailing whitespace.

This commit is contained in:
Tom Alexander
2023-04-22 00:09:14 -04:00
parent 0b989b53a6
commit 7b7779ee7e
3 changed files with 39 additions and 4 deletions

View File

@@ -1,3 +1,6 @@
pub trait Source<'s> {
fn get_source(&'s self) -> &'s str;
}
pub trait SetSource<'s> {
fn set_source(&mut self, source: &'s str);
}