usecrate::StyleSheet;/// A widget extension that allows styling using icee stylesheets.
pubtraitWithStyleSheet<'a> {/// The output type.
typeOutput;/// Style this widget without a unique id.
fnwith_stylesheet(self, stylesheet:&'a StyleSheet)->Self::Output;/// Style this widget with the given unique id.
fnwith_stylesheet_id(self, stylesheet:&'a StyleSheet, id:&'staticstr)->Self::Output;}