I have a question based off the edgeR handbook. I
In the hand handbook it explains setting up contrasts as follows:
my.contrasts <- makeContrasts( DrugvsPlacebo.0h = Drug.0h-Placebo.0h, DrugvsPlacebo.1h = (Drug.1h-Drug.0h)-(Placebo.1h-Placebo.0h), DrugvsPlacebo.2h = (Drug.2h-Drug.0h)-(Placebo.2h-Placebo.0h), levels=design)
The handbook then says:
To find genes that have responded differently to the drug and the placebo at 2 hours:
lrt <- glmLRT(fit, contrast=my.contrasts[,"DrugvsPlacebo.2h"])
My question is how to interpret the up and down regulation. If there are differentially up-regulated genes resulting from this contrast set-up, is it appropriate to say that these genes are up-regulated in response to the drug compared to the placebo at 2 hours?

Just to add to James' answer; if you want to identify genes that are up-regulated in the drug-treated samples compared to the placebo at 2 hours (without considering any of the other timepoints), you would simply do:
Whether or not this is a good idea is another matter. Unlike
DrugvsPlacebo.2hr, this contrast won't consider baseline differences (i.e., at 0 hours) between drug and placebo conditions.